* adds mail sending in case of unrecording and recording of data * adds/updates translations
32 lines
768 B
HTML
32 lines
768 B
HTML
{% load i18n %}
|
|
|
|
<div>
|
|
<h2>{% trans 'Shared data unrecorded' %}</h2>
|
|
<h4>{{obj_identifier}}</h4>
|
|
<hr>
|
|
<article>
|
|
{% trans 'Hello ' %} {{user.username}},
|
|
<br>
|
|
{% trans 'the following dataset has just been unrecorded' %}
|
|
<br>
|
|
<strong>'{{obj_identifier}}'</strong>
|
|
<br>
|
|
{% trans 'This means the data is no longer publicly available.' %}
|
|
<br>
|
|
<br>
|
|
{% trans 'Best regards' %}
|
|
<br>
|
|
KSP
|
|
<br>
|
|
<br>
|
|
<br>
|
|
<small>
|
|
{% trans 'Please note: Unrecorded intervention means the compensations are unrecorded as well.' %}
|
|
</small>
|
|
<br>
|
|
<br>
|
|
{% include 'email/signature.html' %}
|
|
</article>
|
|
</div>
|
|
|