{% extends 'base.html' %} {% block content %}

{{ t('charts.manage') }}

+ {{ t('charts.create') }}
{% for chart in charts %} {% else %}{% endfor %}
{{ t('common.name') }}{{ t('charts.type') }}{{ t('charts.grouping') }}{{ t('charts.status_filter') }}{{ t('charts.dashboard') }}{{ t('common.actions') }}
{{ chart.name }}{% if chart.is_system %}
{{ t('charts.system_chart') }}{% endif %}{% if chart.description %}
{{ chart.description }}{% endif %}
{{ chart_types.get(chart.chart_type, chart.chart_type) }} {{ chart_fields.get(chart.group_field, chart.group_field) }}{% if chart.stack_field %} / {{ chart_fields.get(chart.stack_field, chart.stack_field) }}{% endif %} {% if chart.excluded_statuses %}{{ t('charts.excluded') }}: {{ chart.excluded_statuses|join(', ') }}{% else %}–{% endif %} {{ t('common.yes') if chart.dashboard_visible else t('common.no') }} ✏ {{ t('common.edit') }}
{% if not chart.is_system %}
{% endif %}
{{ t('charts.none') }}
{% endblock %}