changed _ to spaces in url names, added players list

This commit is contained in:
2021-11-07 15:35:14 -06:00
parent b7012b77df
commit b1db596f45
5 changed files with 12 additions and 6 deletions

View File

@@ -2,5 +2,5 @@ from django.http import HttpResponse
from django.shortcuts import render
def welcome(request):
pages = ['schedule', 'teams_list', 'venues_list']
pages = ['schedule', 'teams list', 'venues list', 'players list']
return render(request,'home.html',{'pages':pages})