add before_answers to report process

This commit is contained in:
Laura Klünder 2024-12-26 19:58:25 +01:00
parent c176d1efb4
commit b27aed1343
2 changed files with 5 additions and 1 deletions

View file

@ -20,6 +20,9 @@
{% endfor %} {% endfor %}
</div> </div>
{% endif %} {% endif %}
{% if before_answers %}
<p>{{ before_answers }}</p>
{% endif %}
<div class="answers"> <div class="answers">
{% for answer in answers %} {% for answer in answers %}
<p><a class="button" href="{{ answer.url }}">{{ answer.text }}</a></p> <p><a class="button" href="{{ answer.url }}">{{ answer.text }}</a></p>

View file

@ -605,12 +605,13 @@ def report_missing_choose(request, coordinates):
} }
for group in groups for group in groups
], ],
'before_answers': _('Please carefully check if one of the options above applies to the missing location!'),
'answers': [ 'answers': [
{ {
'url': reverse('site.report_create', kwargs={"coordinates": coordinates}), 'url': reverse('site.report_create', kwargs={"coordinates": coordinates}),
'text': _('None of these fit'), 'text': _('None of these fit'),
}, },
] ],
}) })