From e0e0d4bf3bb04978efcdc4af13f8e035cc669e14 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Thu, 31 Mar 2016 15:44:20 +1100 Subject: [PATCH] views.py renders from registrasion/ --- registrasion/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/registrasion/views.py b/registrasion/views.py index 2a82db1d..d1c4d722 100644 --- a/registrasion/views.py +++ b/registrasion/views.py @@ -82,7 +82,7 @@ def edit_profile(request): data = { "form": form, } - return render(request, "profile_form.html", data) + return render(request, "registrasion/profile_form.html", data) @login_required @@ -126,7 +126,7 @@ def product_category(request, category_id): "voucher_form": voucher_form, } - return render(request, "product_category.html", data) + return render(request, "registrasion/product_category.html", data) def handle_products(request, category, products, prefix): @@ -251,7 +251,7 @@ def invoice(request, invoice_id): "invoice": current_invoice.invoice, } - return render(request, "invoice.html", data) + return render(request, "registrasion/invoice.html", data) @login_required