Commit 46c03e0a authored by José Luis Uc's avatar José Luis Uc

Agregada maqueta del carrito de compras

parent 91b11973
This diff is collapsed.
......@@ -12,4 +12,5 @@ urlpatterns = [
url(r'^cartrequest/$', views.saveInCart, name='cart-rqst'),
url(r'^fromcartrqst/$', views.getFromCart, name='from-cart-rqst'),
url(r'^purchcartrqst/$', views.purchaseProduct, name='purch-prod-rqst'),
url(r'^cart/$', views.showCart, name='show-cart'),
]
......@@ -365,3 +365,8 @@ def purchaseProduct(request):
# return HttpResponse(status=204)
#-------------------------------------------------------------------------------
def showCart(request):
return render(request, 'show_cart.html', {})
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment