initial commit. displays simple hierarchy and lists of models. includes fixtures for initial data.
This commit is contained in:
6
benchcoach/views.py
Normal file
6
benchcoach/views.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.http import HttpResponse
|
||||
from django.shortcuts import render
|
||||
|
||||
def welcome(request):
|
||||
pages = ['schedule', 'teams_list', 'venues_list']
|
||||
return render(request,'home.html',{'pages':pages})
|
||||
Reference in New Issue
Block a user