jobportal/jobs/views.py

16 lines
418 B
Python
Raw Normal View History

2020-12-31 10:36:51 +01:00
from django.views.generic import TemplateView, ListView
2020-12-21 19:53:38 +01:00
2020-12-31 15:10:53 +01:00
from jobs.models import Job, Category
2020-12-28 20:28:52 +01:00
2020-12-31 10:36:51 +01:00
class HomeView(ListView):
template_name = 'jobs/index.html'
context_object_name = 'jobs'
model = Job
paginate_by = 1
2020-12-31 15:10:53 +01:00
def get_context_data(self, **kwargs):
context = super(HomeView, self).get_context_data(**kwargs)
context['categories'] = Category.objects.all()
return context