32 lines
768 B
HTML
32 lines
768 B
HTML
|
{% load i18n %}
|
||
|
|
||
|
<div>
|
||
|
<h2>{% trans 'Shared data recorded' %}</h2>
|
||
|
<h4>{{obj_identifier}}</h4>
|
||
|
<hr>
|
||
|
<article>
|
||
|
{% trans 'Hello ' %} {{user.username}},
|
||
|
<br>
|
||
|
{% trans 'the following dataset has just been recorded' %}
|
||
|
<br>
|
||
|
<strong>'{{obj_identifier}}'</strong>
|
||
|
<br>
|
||
|
{% trans 'This means the data is now publicly available, e.g. in LANIS' %}
|
||
|
<br>
|
||
|
<br>
|
||
|
{% trans 'Best regards' %}
|
||
|
<br>
|
||
|
KSP
|
||
|
<br>
|
||
|
<br>
|
||
|
<br>
|
||
|
<small>
|
||
|
{% trans 'Please note: Recorded intervention means the compensations are recorded as well.' %}
|
||
|
</small>
|
||
|
<br>
|
||
|
<br>
|
||
|
{% include 'email/signature.html' %}
|
||
|
</article>
|
||
|
</div>
|
||
|
|