jobportal/jobs/views.py
2020-12-31 10:36:51 +01:00

11 lines
220 B
Python

from django.views.generic import TemplateView, ListView
from jobs.models import Job
class HomeView(ListView):
template_name = 'jobs/index.html'
context_object_name = 'jobs'
model = Job
paginate_by = 1