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