Commit 28958ed1 authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

fix: corrections to report email

parent f59b384d
......@@ -97,9 +97,9 @@
<td colspan="2" width="70%"
style="background-color: #fff; color: #222;">
<b>Dataset: {{ dataset.title }}</b> <br />
Data types: {{ dataset_data_types }} (TODO:)<br />
Data declaration count: {{ dataset.data_declarations | length }} <br />
Data locations: {{ dataset_data_locations }} (TODO:)<br />
Data declaration count: {{ dataset.data_declarations.all | length }} <br />
{% comment %}Data types: {{ dataset_data_types }} (TODO:)<br />
Data locations: {{ dataset_data_locations }} (TODO:)<br />{% endcomment %}
</td>
<td width="5%" style="background-color: #fff"></td>
</tr>
......
......@@ -2,8 +2,8 @@ DAISY report (Generated at: {% now "Y/m/j" %})
This report contains all records for which you were appointed as a local custodian,
and highlights any issues in the records (found by an automatic validation rules).
The list has been created to raise awareness of missing or incomplete records and other necessary information required
for compliance with GDPR.
The list has been created to raise awareness of missing or incomplete records and
other necessary information required for compliance with GDPR.
General overview:
Projects count: {{ projects | length }}
......@@ -13,13 +13,11 @@ General overview:
Detailed overview:
{% for project in projects.all %}
Project: {{ project.title }} ({{ project.acronym }})
{% for dataset in project.datasets.all %}
Dataset: {{ dataset.title }}
Data types: {{ dataset_data_types }} (TODO:)
Data declaration count: {{ dataset.data_declarations | length }}
Data locations: {{ dataset_data_locations }} (TODO:)
Project {{ forloop.counter }}/{{ projects.all | length }}: {{ project.title }} ({{ project.acronym }}){% for dataset in project.datasets.all %}
Dataset {{ forloop.counter }}/{{ project.datasets.all | length }}: {{ dataset.title }}
Data declaration count: {{ dataset.data_declarations.all | length }}
{% comment %}Data types: {{ dataset_data_types }} (TODO:)
Data locations: {{ dataset_data_locations }} (TODO:){% endcomment %}
{% endfor %}
{% endfor %}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment