{% macro render_entry(entry, clickable_date) %}
{{ entry.html|safe }} {% if request.cookies.get('hide_entry_images') != 'True' %} {% if entry.images_source %}
{% for url in entry.images_source %}{{{% endfor %}
{% endif %} {% endif %} {% if (request.cookies.get('hide_entry_favorite_count') == 'True') or (request.cookies.get('hide_entry_author') == 'True') or (request.cookies.get('hide_entry_date') == 'True') %}
{% endif %}
{% if request.cookies.get('hide_entry_favorite_count') == 'False' %} {{ entry.favorite_count }} favorites {% endif %} {% if request.cookies.get('hide_entry_author') == 'False' %} {% if request.cookies.get('hide_entry_favorite_count') == 'False' %}-{% endif %} {% endif %} {% if request.cookies.get('hide_entry_date') == 'False' %} {% if request.cookies.get('hide_entry_author') == 'False' %} - {% elif request.cookies.get('hide_entry_favorite_count') == 'False' %} - {% endif %} {% endif %}
{% endmacro %} {% macro render_agenda(topic) %}
{{ topic.title }}
{% if topic.entry_count %}{{ topic.entry_count }}{% endif %}
{% endmacro %}