renamed list to category

This commit is contained in:
DerTyp187
2021-11-10 08:54:20 +01:00
parent 0423b92c2b
commit 4a7b65b721
6 changed files with 24 additions and 13 deletions

View File

@@ -3,5 +3,8 @@ from django.shortcuts import render
def index(req):
return render(req, "main/index.html")
def list(req):
return render(req, "main/list.html")
def topic(req, category, topic):
return render(req, "main/topic.html")
def category(req, category):
return render(req, "main/category.html")