Skip to content

Commit

Permalink
update the policies to the new design
Browse files Browse the repository at this point in the history
  • Loading branch information
tudoramariei committed Dec 20, 2024
1 parent 8bbcb1f commit e777b94
Show file tree
Hide file tree
Showing 7 changed files with 711 additions and 701 deletions.
6 changes: 3 additions & 3 deletions backend/donations/views/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def get(self, request, *args, **kwargs):


class NoteHandler(TemplateView):
template_name = "note.html"
template_name = "public/note.html"

def get(self, request, *args, **kwargs):
context = {
Expand All @@ -107,15 +107,15 @@ def get(self, request, *args, **kwargs):


class PolicyHandler(TemplateView):
template_name = "policy.html"
template_name = "public/policy.html"

def get(self, request, *args, **kwargs):
context = {"title": "Politica de confidențialitate"}
return render(request, self.template_name, context)


class TermsHandler(TemplateView):
template_name = "terms.html"
template_name = "public/terms.html"

def get(self, request, *args, **kwargs):
context = {
Expand Down
184 changes: 0 additions & 184 deletions backend/templates/v1/note.html

This file was deleted.

Loading

0 comments on commit e777b94

Please sign in to comment.