예제 #1
0
파일: views.py 프로젝트: gmist/five-studio
def prices(request):
    return render_to_response('admin/prices.html', {'prices': Price.all()})
예제 #2
0
파일: views.py 프로젝트: gmist/five-studio
def index(request):
    prices = Price.all()
    return render_to_response('price/index.html', {'prices': prices})