- {# Entities #}
- {% with transaction.entities.all as entities %}
- {% if entities %}
+ {# Description#}
+
+ {# Entities #}
+ {% with transaction.entities.all as entities %}
+ {% if entities %}
+
+
+
{{ entities|join:", " }}
+
+ {% endif %}
+ {% endwith %}
+ {# Notes#}
+ {% if transaction.notes %}
-
-
{{ entities|join:", " }}
-
- {% endif %}
- {% endwith %}
- {# Notes#}
- {% if transaction.notes %}
-
-
-
{{ transaction.notes | limited_markdown | linebreaksbr }}
-
- {% endif %}
- {# Category#}
- {% if transaction.category %}
-
-
-
{{ transaction.category.name }}
-
- {% endif %}
- {# Tags#}
- {% with transaction.tags.all as tags %}
- {% if tags %}
-
-
-
{{ tags|join:", " }}
+
+
{{ transaction.notes | limited_markdown | linebreaksbr }}
+
+ {% endif %}
+ {# Category#}
+ {% if transaction.category %}
+
+
+
{{ transaction.category.name }}
+
+ {% endif %}
+ {# Tags#}
+ {% with transaction.tags.all as tags %}
+ {% if tags %}
+
+
+
{{ tags|join:", " }}
+
+ {% endif %}
+ {% endwith %}
+