Created
December 21, 2019 01:32
-
-
Save morganpierson/b7bb605b03ba8c875d8ba05a383daa57 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.shortcuts import render | |
from django.http import HttpResponse | |
# Create your views here. | |
def home(request): | |
return render(request, 'base.html') | |
def schedule(request): | |
return render(request, 'schedule.html') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment