{% extends "admin/layout.html" %} {% block content %}

Presets


Add role

Roles

List of participant specialties. {% for role in roles %} {% endfor %}
Name Assigned
Edit {{ role.name }} {{ role.user_count() }}
Add category

Categories

Used as topics or challenges for reference in projects. {% for category in categories %} {% endfor %}
Name Event Manage
{{ category.name }} {{ category.event.name }} Edit {{ category.project_count() }} projects

Stages

{% if not config.DRIBDAT_STAGE %} To edit the stages, you can configure a link to a YAML file in the environment settings. See the User Handbook for details. {% else %} The following configuration is currently being loaded from: {% endif %}
{% for step in steps %} {% endfor %}
{% if step.index > 0 %} {{ step.index }} {% else %} * {% endif %} {% if step.emoji %} {{ step.emoji }} {% endif %} {% if step.index > 0 %}

{{ step.phase }}

{% endif %}
{% if step.index > 0 and step.description %}

{{ step.description }}

{% endif %} {% if step.conditions %}
    {% for what in step.conditions.agree %}
  • {{ what }}
  • {% endfor %}
{% endif %}
{% endblock %}