snipt/jobs/views.py

10 lines
194 B
Python
Raw Normal View History

2013-09-05 10:28:35 -07:00
from annoying.decorators import render_to
from jobs.models import Job
@render_to('jobs/jobs.html')
def jobs(request):
return {
'jobs': Job.objects.all().order_by('-created')
}