Example #1
0
def prices(request):
    return render_to_response('admin/prices.html', {'prices': Price.all()})
Example #2
0
def index(request):
    prices = Price.all()
    return render_to_response('price/index.html', {'prices': prices})