{% extends "base.html" %} {% block title %}{{ quest.title }}{% endblock %} {% block head %} {% if request.user == quest.owner %} {% endif %} {% if request.user == quest.owner %} {% endif %} {% endblock %} {% block header %} {% include "quest/quest_header.html" %} {% endblock %} {% block content %}

{{ quest.title }}

{% if quest.banner_url %}{% endif %} {% if quest.description %}
{{ quest.description }}
{% endif %}
Tags: {% for tag in quest.tags.names() %}{{ tag }}{% if not loop.last %}, {% endif %}{% endfor %}
{% if request.user == quest.owner %}
{{ csrf_input }}
{% endif %}

Pages

{% if appendices %}

Appendices

{% endif %} {% if quest.owner == request.user %}
New Page:
Appendix:
{% endif %} {% if vars['next_page'] %}
{% endif %}
{% include "quest/chat.html" %} {% endblock %}