haikal/templates/bill/includes/card_markdown.html
2025-07-15 17:27:03 +03:00

14 lines
420 B
HTML

{% load trans from i18n %}
{% load django_ledger %}
{% if style == 'card_1' %}
<div class="card h-100" style="height: 25rem;">
<div class="card-body overflow-auto">
{% if notes_html %}
{{ notes_html|safe }}
{% else %}
<p class="card-text">{% trans 'No available notes to display...' %}</p>
{% endif %}
</div>
</div>
{% endif %}