diff --git a/project1/README.md b/project1/README.md index c45bb51..43e2bc4 100644 --- a/project1/README.md +++ b/project1/README.md @@ -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 diff --git a/project1/project1/views.py b/project1/project1/views.py index 081c11d..d020efd 100644 --- a/project1/project1/views.py +++ b/project1/project1/views.py @@ -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 + "%'")