{% extends 'base.html' %}{% block content %}
{{ t('fields.catalog_help') }}
| {{ 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 %} |