21 lines
496 B
Python
21 lines
496 B
Python
|
#!/usr/bin/env python3
|
||
|
"""
|
||
|
Quest and quest accessory views.
|
||
|
"""
|
||
|
from django.shortcuts import render
|
||
|
from django.http import HttpResponse
|
||
|
|
||
|
def index(request):
|
||
|
"""
|
||
|
/quest page index. Possibly not needed.
|
||
|
"""
|
||
|
#return render(request, "Hello, world. You're at the quest index.", {})
|
||
|
return HttpResponse("Hello, world. You're at the quest index.")
|
||
|
|
||
|
|
||
|
def quest(request, quest_id, page_num=1):
|
||
|
"""
|
||
|
Arbituary quest page view.
|
||
|
"""
|
||
|
return HttpResponse(f"Quest_ID: {quest_id} Page_Num: {page_num}")
|