Files
caminus/bounty/views.py
2012-10-23 18:03:54 -04:00

10 lines
297 B
Python

import models
from django.shortcuts import render_to_response
def index(request):
bounties = models.Bounty.objects.filter(closed__isnull=True)
return render_to_response('bounty/index.html', {'bounties': bounties})
def create(request):
return render_to_response('bounty/create.html')