Skip to content

Instantly share code, notes, and snippets.

@morganpierson
Created December 21, 2019 01:32
Show Gist options
  • Save morganpierson/b7bb605b03ba8c875d8ba05a383daa57 to your computer and use it in GitHub Desktop.
Save morganpierson/b7bb605b03ba8c875d8ba05a383daa57 to your computer and use it in GitHub Desktop.
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