16 lines
380 B
HTML
16 lines
380 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 %}
|