ipv6-dot-work/jobs/views.py
Aatish Neupane d122a1db39 add basic index and job listing page
register models to admin for easy testing
2018-10-17 14:36:51 +05:45

13 lines
260 B
Python

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