Titivillus/create_quest/views.py
2018-08-10 08:39:51 -04:00

13 lines
238 B
Python

#!/usr/bin/env python3
"""
/create_quest app views.
"""
from django.shortcuts import render
def index(request):
"""
The index page for creating new quests.
"""
context = {}
return render(request, 'create_quest/index.html', context)