13 lines
260 B
Python
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
|
|
|