{% if itemrows is defined %}
{{ trans('label_name') }} |
{{ trans('label_source') }} |
{{ trans('label_datatype') }} |
{{ trans('label_obligation') }} |
{{ trans('label_maxocc') }} |
{{ trans('label_key') }} |
{% for itemrows_item in itemrows %}
{{ itemrows_item[0] }} |
{{ itemrows_item[1] }} |
{{ itemrows_item[2] }} |
{{ itemrows_item[3] }} |
{{ itemrows_item[4] }} |
{{ itemrows_item[5] }} |
{% endfor %}
{% endif %}
{% if otherrows is defined %}
{{ trans('i_other_attributes') }}
{{ trans('label_name') }} |
{{ trans('label_datatype') }} |
{{ trans('label_obligation') }} |
{{ trans('label_maxocc') }} |
{% for otherrows_item in otherrows %}
{{ otherrows_item[0] }} |
{{ otherrows_item[1] }} |
{{ otherrows_item[2] }} |
{{ otherrows_item[3] }} |
{% endfor %}
{% endif %}
{% if maprows is defined %}
{{ trans('i_default_profiles') }}
{{ trans('label_from') }} |
|
{{ trans('label_to') }} |
{% for maprows_item in maprows %}
{{ maprows_item[0] }} |
=> |
{{ maprows_item[1] }} |
{% endfor %}
{% endif %}