Titivillus/create_quest/views.py

13 lines
238 B
Python
Raw Normal View History

2018-08-10 08:39:51 -04:00
#!/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)