{% extends "administration/base.html" %} {% load i18n %} {% load passbook_utils %} {% block content %} {% trans 'Property Mappings' %} {% trans "Control how passbook exposes and interprets information." %} {% if object_list %} {% trans 'Create' %} {% for type, name in types.items %} {{ name|verbose_name }} {{ name|doc }} {% endfor %} {% include 'partials/pagination.html' %} {% trans 'Name' %} {% trans 'Type' %} {% for property_mapping in object_list %} {{ property_mapping.name }} {{ property_mapping|verbose_name }} {% trans 'Edit' %} {% trans 'Delete' %} {% endfor %} {% include 'partials/pagination.html' %} {% else %} {% trans 'No Property Mappings.' %} {% trans 'Currently no property mappings exist. Click the button below to create one.' %} {% trans 'Create' %} {% for type, name in types.items %} {{ name|verbose_name }} {{ name|doc }} {% endfor %} {% endif %} {% endblock %}
{% trans "Control how passbook exposes and interprets information." %}