Add homepage, link to it from the logo

This commit is contained in:
2023-01-04 17:22:36 +01:00
parent d225856174
commit 4c642d97cb
5 changed files with 20 additions and 1 deletions

View File

@ -65,3 +65,7 @@ def add_game(request):
context["form"] = form
context["title"] = "Add New Game"
return render(request, "add.html", context)
def index(request):
context = {}
return render(request, "index.html", context)