{% extends "base.html" %} {% block title %}{{ quest_title }}{% endblock %} {% block head %} {% if session.get("user_id") == owner_id %} {% endif %} {% endblock %} {% block header %} {% if session.get("user_id") == owner_id %}
  • Edit Quest
  • {% endif %} {% endblock %} {% block content %}

    {{ quest_title }}

    {% for quest_post in quest_posts %}
    {{ quest_post[4] | strftime }} {% if session.get("user_id") == owner_id %} {% if quest_post[2] == "text" %}
    Edit {% elif quest_post[2] == "dice" and quest_post == quest_posts|last %} {% if quest_post[0] == dice_call %}
    Close {% else %}
    Open {% endif %} {% endif %} {% endif %}
    {% if quest_post[2] == "text" %} {% autoescape false %} {{ quest_post[3] }} {% endautoescape %} {% elif quest_post[2] == "dice" %}

    {{ quest_post[3] }} - {% if quest_post[0] == dice_call %}Open{% else %}Closed{% endif %}

    {% for quest_roll in quest_rolls %} {% if quest_roll[2] == quest_post[0] %}
    Rolled {{ quest_roll[4] }} ({{ quest_roll[3] }})
    {% endif %} {% endfor %} {% endif %}

    {% endfor %}
    {% if session.get("user_id") == owner_id %}

    {% endif %}


    Chat

    {% autoescape false %} {% for message in messages %}
    Anonymous {{ message[3] | strftime }}
    {{ message[4] }}

    {% endfor %} {% endautoescape %}
    {% endblock %}