{% extends "subjects/subject_base.html" %} {% load i18n utils %} {% block title %}{% translate "GDPR request" %} · {{ block.super }}{% endblock %} {% block content %} {% with subject.exportanswer_set.all|list as answers %} {% if answers %}

{% blocktranslate with count=answers|length %}Export issued {{ count }}× so far:{% endblocktranslate %}

{% endif %} {% endwith %}
{% csrf_token %} {% if subject.export_requested %} {% blocktranslate with date=subject.export_requested|date %}Export requested on {{ date }}{% endblocktranslate %} {% else %} {% translate 'No export requested' %} {% endif %}
{% if subject.export_requested %} {% for dataset in dataset_list %}

{{ dataset|model_verbose_name }}

{% for field_name in dataset|field_names %} {% if field_name != 'id' and field_name != 'slug' and field_name != 'subject' and field_name != 'subject_id' and field_name != 'participation' and dataset|display:field_name %}
{{ dataset|verbose_name:field_name }}
{{ dataset|display:field_name }}
{% endif %} {% endfor %}
{% endfor %}

{% translate 'Attributes' %}

{% for label, value in attributes %}
{{ label }}
{{ value }}
{% endfor %}
{% endif %} {% endblock %}