{% 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 %} {% if quest_post[2] == "text" %}
    {% elif quest_post[2] == "dice" %}
    {% elif quest_post[2] == "poll" %}
    {% endif %}
    {{ quest_post[4] | strftime }} {% if session.get("user_id") == owner_id %} {% if quest_post[2] == "text" %}
    Edit {% elif quest_post[2] == "dice" or quest_post[2] == "poll" and quest_post == quest_posts|last %} {% if quest_post[0] == open_post_id %}
    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] == open_post_id %}Open{% else %}Closed{% endif %}

    {% for dice_roll in dice_rolls %} {% if dice_roll[2] == quest_post[0] %}
    Rolled {{ dice_roll[4] }} = {{ dice_roll[5] }} ({{ dice_roll[3] }}){% if quest_post[0]|dice_chal != 0 %} - {% if dice_roll[5] >= quest_post[0]|dice_chal %}Pass{% else %} Fail{% endif %}{% endif %}
    {% endif %} {% endfor %} {% elif quest_post[2] == "poll" %}

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

    {% for option in poll_options %} {% if option[0] == quest_post[0] %} {% endif %} {% endfor %}
    {{ option[2] }}
    {% 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 %}