{% 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 %}

{% endfor %} {% endif %} {% endmacro %} {% block title %}Topics{% endblock %} {% block body %}

 

Warning! Don't forget to press Recording → Update! before starting a recording.

Current

{{ render_topics(current, 'current') }}

Regular

{{ render_topics(regular, 'regular') }}

Discussed

Export links: classic or advanced (with timestamps).
Clear discussed: I know what I'm doing
{{ render_topics(discussed, 'discussed') }} {% endblock %}