mpeltriaux
090f6faa4e
* adds new modal form content template recorded_no_edit.html * adds modal content change, such that no data can be edited on any form as long as the entry is recorded -> instead, users are informed on the form, that the recording state prohibits editing * adds translations
19 lines
550 B
HTML
19 lines
550 B
HTML
{% load i18n fontawesome_5 %}
|
|
|
|
<div class="p-5 col-sm-12">
|
|
<h4>
|
|
<span class="registered-bookmark">
|
|
{% fa5_icon 'bookmark' %}
|
|
</span>
|
|
<span>
|
|
{% trans 'This data is recorded' %}
|
|
</span>
|
|
</h4>
|
|
<hr>
|
|
<article>
|
|
{% blocktrans %}
|
|
Whilst recorded the data is published publicly. If you wish to edit any information on this data, the data needs
|
|
to be unrecorded first. Do not forget to record it afterwards, again.
|
|
{% endblocktrans %}
|
|
</article>
|
|
</div> |