Add commented out fix
This commit is contained in:
parent
09fee6956e
commit
e83a95367c
|
@ -2,8 +2,7 @@
|
||||||
|
|
||||||
This project is course project (Project 1) for the online course https://cybersecuritybase.mooc.fi/.
|
This project is course project (Project 1) for the online course https://cybersecuritybase.mooc.fi/.
|
||||||
|
|
||||||
The project *SHOULD NOT* be used for anything else than for the project course as it is insecure and
|
The project *SHOULD NOT* be used for anything else than for the project course as it is insecure and against all best security practices.
|
||||||
against all best security practices.
|
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@ def all_products(request):
|
||||||
products = Product.objects.all()
|
products = Product.objects.all()
|
||||||
return render(request, "index.html", {"products": products})
|
return render(request, "index.html", {"products": products})
|
||||||
|
|
||||||
|
#@login_required(login_url='/login')
|
||||||
def filtered_products(request):
|
def filtered_products(request):
|
||||||
filter = request.GET.get('filter', '')
|
filter = request.GET.get('filter', '')
|
||||||
products = Product.objects.raw("SELECT * FROM project1_Product where name like '%" + filter + "%'")
|
products = Product.objects.raw("SELECT * FROM project1_Product where name like '%" + filter + "%'")
|
||||||
|
|
Loading…
Reference in New Issue