From b1057c9dc9ff6b6e1786d31e3401ad9571eb7f1d Mon Sep 17 00:00:00 2001 From: luxagraf Date: Tue, 5 Nov 2019 11:15:30 -0500 Subject: added products --- app/products/views.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/products/views.py (limited to 'app/products/views.py') diff --git a/app/products/views.py b/app/products/views.py new file mode 100644 index 0000000..30be542 --- /dev/null +++ b/app/products/views.py @@ -0,0 +1,15 @@ +from django.shortcuts import render +from .models import Product + + +def insert_products(request): + """ + The view that handles the admin insert products feature + """ + object_list = Product.objects.all() + #object_list = sorted( + # chain(images, videos, audio), + # key=lambda instance: instance.pub_date, + # reverse=True + #) + return render(request, 'admin/insert_products.html', {'object_list': object_list, 'textarea_id': request.GET['textarea']}) -- cgit v1.2.3-70-g09d2