11 lines
220 B
Python
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
|