This commit is contained in:
DerTyp187
2021-11-25 14:38:30 +01:00
parent a10f75258c
commit ae8bce36e5
12 changed files with 36 additions and 1 deletions

View File

@@ -91,6 +91,10 @@ def about(req):
def privacy(req):
return render(req, "main/privacy.html", {'current': 'privacy'})
def tos(req):
return render(req, "main/tos.html", {'current': 'tos'})
def rating(req, topic_title, is_positive):
topic = Topic.objects.filter(title=topic_title).first()