13 lines
238 B
Python
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)
|