{% extends "user_groups/base.html" %} {% load user_group_tags %} {% load styled_forms %} {% block title %}{% trans 'Groups' %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{% trans "Import Results for" %} {{ group.name }}

{% for sub in subs %}
{% if sub.subscriber %} {% for field in sub.subscriber.fields.all %}

{{ field.field.label }}: {{ field.value }}

{% endfor %} {% endif %} {% for field in sub.data.all %}

{{ field.field_label }}: {{ field.value }}

{% endfor %}
{% empty %}

{% trans 'No valid subscriber was found in the import file.' %}

{% endfor %}
{% endblock %} {% block extra_body %} {{ block.super }} {% endblock %}