2021-10-13 14:03:34 +02:00
|
|
|
{% extends 'public_base.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<div class="jumbotron">
|
|
|
|
<h1 class="display-4">{% trans 'Unrecorded data' %}</h1>
|
|
|
|
<hr>
|
|
|
|
<p class="lead">
|
|
|
|
{% blocktrans %}
|
2022-04-12 10:33:03 +02:00
|
|
|
The data you want to see is not recorded and might still be work in progress or the legal binding date has
|
|
|
|
not been reached yet. We can not publish this report as long as revocations could occur.
|
|
|
|
Please come back later.
|
2021-10-13 14:03:34 +02:00
|
|
|
{% endblocktrans %}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|