We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ce0c8f commit 6e7f6a5Copy full SHA for 6e7f6a5
django_ledger/templates/django_ledger/includes/card_markdown.html
@@ -0,0 +1,25 @@
1
+{% load trans from i18n %}
2
+{% load django_ledger %}
3
+
4
+{% if style == 'card_1' %}
5
+ <div class="card">
6
+ <div class="card-header">
7
+ <div class="card-header-title">
8
+ <h1 class="is-size-3 has-text-weight-light">{% if title %}{{ title }}{% else %}
9
+ {% trans 'Notes' %}
10
+ {% endif %}</h1>
11
+ </div>
12
13
+ <div class="card-content">
14
+ <div class="content">
15
+ {% if notes_html %}
16
+ {% autoescape off %}
17
+ {{ notes_html | safe }}
18
+ {% endautoescape %}
19
+ {% else %}
20
+ <p>{% trans 'No available notes to display...' %}</p>
21
+ {% endif %}
22
23
24
25
+{% endif %}
0 commit comments