added list.html

This commit is contained in:
DerTyp187
2021-11-09 20:25:26 +01:00
parent 0c93c2e232
commit 0e6ecbe284
4 changed files with 39 additions and 0 deletions

View File

@@ -2,3 +2,6 @@ from django.shortcuts import render
def index(req):
return render(req, "main/index.html")
def list(req):
return render(req, "main/list.html")