2022-08-15 08:08:15 +02:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<h2>{% trans 'Resubmission' %}</h2>
|
|
|
|
<h4>{{obj_identifier}}</h4>
|
|
|
|
<hr>
|
|
|
|
<article>
|
|
|
|
{% trans 'Hello ' %} {{resubmission.user.username}},
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
{% trans 'you wanted to be reminded on this entry.' %}
|
|
|
|
<br>
|
|
|
|
{% if resubmission.comment %}
|
|
|
|
<br>
|
|
|
|
{% trans 'Your personal comment:' %}
|
|
|
|
<br>
|
|
|
|
<article style="font: italic">"{{resubmission.comment}}"</article>
|
|
|
|
{% endif %}
|
|
|
|
<br>
|
|
|
|
<br>
|
2023-02-23 10:17:45 +01:00
|
|
|
{% trans 'This entry is located in' %}
|
|
|
|
<ul>
|
|
|
|
{% for municipal in municipals_names %}
|
|
|
|
<li>{{municipal}}</li>
|
|
|
|
{% empty %}
|
|
|
|
</ul>
|
|
|
|
{% trans 'Unknown - No administrative location recognized' %}
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
<br>
|
2022-08-15 08:08:15 +02:00
|
|
|
{% trans 'Best regards' %}
|
|
|
|
<br>
|
|
|
|
KSP
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
{% include 'email/signature.html' %}
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
|