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/.
|
||||
|
||||
The project *SHOULD NOT* be used for anything else than for the project course as it is insecure and
|
||||
against all best security practices.
|
||||
The project *SHOULD NOT* be used for anything else than for the project course as it is insecure and against all best security practices.
|
||||
|
||||
## Getting started
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@ def all_products(request):
|
|||
products = Product.objects.all()
|
||||
return render(request, "index.html", {"products": products})
|
||||
|
||||
#@login_required(login_url='/login')
|
||||
def filtered_products(request):
|
||||
filter = request.GET.get('filter', '')
|
||||
products = Product.objects.raw("SELECT * FROM project1_Product where name like '%" + filter + "%'")
|
||||
|
|
Loading…
Reference in New Issue