{% extends "layout.html" %} {% macro render_priority(priority) %} {% if priority == 50 %} Highest {% elif priority == 40 %} High {% elif priority == 30 %} Medium {% elif priority == 20 %} Low {% elif priority == 10 %} Lowest {% else %} Unknown ({{ priority }}) {% endif %} {% endmacro %} {% macro render_topics(topics_list, section) %} {% if topics_list == [] %}
(None)
{% else %} {% for topic in topics_list %}{{ render_priority(topic["priority"]) }} (up / down) | {{ topic["title"] }}
{{ encode_description(topic["description"])|safe }}
{# Submitted {{ topic["created"].date() }} by {{ topic["login"] }} | #} Actions: edit, mark: {% if section == 'current' %} current, {% else %} current, {% endif %} {% if section == 'regular' %} regular, {% else %} regular, {% endif %} {% if section == 'discussed' %} discussed, {% else %} discussed. {% endif %}
Warning! Don't forget to press Recording → Update! before starting a recording.