Titivillus/quest/views.py

46 lines
1.3 KiB
Python
Raw Normal View History

2018-08-10 08:39:51 -04:00
#!/usr/bin/env python3
"""
Quest and quest accessory views.
"""
2018-09-05 12:48:24 -04:00
from django.shortcuts import render, redirect
2018-08-10 08:39:51 -04:00
from django.http import HttpResponse
from .models import Quest, DiceRoll, PollOption, PollVote, PageTitle
2018-08-13 13:17:51 -04:00
2018-08-10 08:39:51 -04:00
def index(request):
"""
/quest page index. Possibly not needed.
"""
return HttpResponse("Hello, world. You're at the quest index.")
def quest(request, quest_id, page_num=1):
"""
Arbituary quest page view.
"""
2018-08-13 13:17:51 -04:00
quest = Quest.objects.get(id=quest_id)
pages = PageTitle.objects.filter(quest=quest).order_by('page_num')
messages = quest.message_set.all()
2018-08-13 13:17:51 -04:00
posts = quest.post_set.all()
dice_rolls = DiceRoll.objects.filter(dicecall__post__quest=quest)
poll_options = PollOption.objects.filter(poll__post__quest=quest)
poll_votes = PollVote.objects.filter(option__poll__post__quest=quest)
2018-09-03 17:59:41 -04:00
ip_address = request.META['REMOTE_ADDR']
2018-08-24 21:51:03 -04:00
context = locals()
2018-08-13 13:17:51 -04:00
return render(request, 'quest/quest.html', context)
2018-09-05 12:48:24 -04:00
def edit_quest(request, quest_id, page_num=1):
"""
Edit quest page. Only available to the QM.
"""
quest = Quest.objects.get(id=quest_id)
if quest.owner != request.user:
return redirect('quest:quest', quest_id=quest_id, page_num=page_num)
if request.method == 'POST':
pass
else:
pass
context = locals()
return render(request, 'quest/edit_quest.html', context)