2025-04-01 23:02:19 +02:00

14 lines
560 B
HTML

<div class="modal-header">
<h5 class="modal-title">{{ paper.title }}</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
{% for key, value in paper.__dict__.items() %}
{% if not key.startswith('_') and key != 'metadata' %}
<p><strong>{{ key.replace('_', ' ').capitalize() }}:</strong> {{ value }}</p>
{% endif %}
{% endfor %}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>