{% load i18n l10n %}
{% if parcels|length == 0 %}
{% trans 'Parcels can not be calculated, since no geometry is given.' %}
{% else %} {% for municipal in municipals %} {% endfor %}
{% trans 'Municipal' %} {% trans 'Municipal key' %} {% trans 'District' %} {% trans 'District key' %}
{{municipal.name}} {{municipal.key|unlocalize}} {{municipal.district.name}} {{municipal.district.key|unlocalize}}
{% for parcel in parcels %} {% endfor %}
{% trans 'Parcel group' %} {% trans 'Parcel group key' %} {% trans 'Parcel' %} {% trans 'Parcel counter' %} {% trans 'Parcel number' %}
{{parcel.parcel_group.name|default_if_none:"-"}} {{parcel.parcel_group.key|default_if_none:"-"}} {{parcel.flr|default_if_none:"-"|unlocalize}} {{parcel.flrstck_zhlr|default_if_none:"-"|unlocalize}} {{parcel.flrstck_nnr|default_if_none:"-"|unlocalize}}
{% endif %}