{% extends "base.html" %} {% block title %}{{ texts["title_admin_dashboard"] }}{% endblock %} {% block content %}

{{ texts["admin_dashboard_heading"] }}

{% if settings %}

{{ texts["active_strategy"].format(strategy=strategy_labels.get(settings.selection_strategy.value, settings.selection_strategy.value)) }}

{% endif %}

{{ texts["topics_heading"] }}

{% if topics_data %} {% for topic_data in topics_data %}

{{ topic_data.topic.title }}

{{ topic_data.topic.description }}

{% if topic_data.arguments %} {% else %}

{{ texts["no_arguments_topic"] }}

{% endif %}
{% endfor %} {% else %}

{{ texts["no_topics_admin"] }}

{% endif %}
{% endblock %}