from django.shortcuts import render from django.views.generic import TemplateView, ListView from .models import Job class Index(TemplateView): template_name = 'jobs/index.html' class JobList(ListView): context_object_name = 'jobs' model = Job