{{ user.username }}
{% if user.is_admin %} Администрирование {% endif %}
Добро пожаловать в инфрастуктурный полигон
{% if session_notice %}
{{ session_notice }}
{% endif %} {% if categories %}
Все сервисы {% for category in categories %} {{ category.name }} {% endfor %}
{% endif %}
{% for service in services %} {% set svc_cats = service_categories.get(service.id, []) %}
icon

{{ service.name }}

Открыть сервис

{% if service.comment %} {{ service_comment_html.get(service.id, '') }} {% endif %} {% if svc_cats %}
{% for category in svc_cats %} {{ category.name }} {% endfor %}
{% endif %}
{% else %}
{% if selected_category_slug %} Нет сервисов в выбранной категории {% else %} Нет назначенных сервисов {% endif %}
{% endfor %}