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

{{ t('fields.title') }}

➕ {{ t('fields.add') }}{{ t('common.back') }}

{{ t('fields.catalog_help') }}

{% for d in definitions %}{% endfor %}
{{ t('fields.field') }}{{ t('fields.label') }}{{ t('common.description') }}{{ t('fields.data_type') }}{{ t('fields.read_only') }}{{ t('fields.system') }}{{ t('fields.stored_values') }}{{ t('common.actions') }}
{{d.field_name}}{{d.label}}{{d.description or ''}}{{ t('fields.data_type_' ~ d.data_type, data_types.get(d.data_type,d.data_type)) }}{{t('common.yes') if d.readonly else t('common.no')}}{{t('common.yes') if d.is_system else t('common.no')}}{{value_counts.get(d.id,0)}}{{t('common.edit')}}{% if not d.is_system %}
{% endif %}
{% endblock %}