Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove extra /div that mess up the display of send_for_approval dialog #4438

Merged
merged 1 commit into from
Mar 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

<div class="p-4">
{% if remaining_document_categories %}
<div class="p-2 mb-4 bg-red-100 rounded prose"></div>
<p class="mb-0">{% trans "Looks like the following documents are missing" %}:</p>
<div class="p-2 mb-4 bg-red-100 rounded prose">
<p class="mb-0">{% trans "Looks like the following documents are missing" %}:</p>

<ul class="mt-0">
{% for missing_category in remaining_document_categories %}
<li>{{ missing_category.name }}</li>
{% endfor %}
</ul>
<ul class="mt-0">
{% for missing_category in remaining_document_categories %}
<li>{{ missing_category.name }}</li>
{% endfor %}
</ul>
</div>
{% trans "Submit anyway" as submit %}
{% endif %}
Expand Down
Loading