We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e36318 commit 520614bCopy full SHA for 520614b
thebook/bookkeeping/templates/bookkeeping/transactions.html
@@ -173,7 +173,12 @@ <h5 class="m-0 font-weight-bold">
173
<td {% if transaction.amount < 0 %}class="text-danger"{% endif %}>
174
{{ transaction.amount|money }}
175
</td>
176
- <td>{{ transaction.description }}</td>
+ <td>
177
+ {{ transaction.description }}
178
+ {% for tag in transaction.tags.all %}
179
+ <span class="badge badge-primary">{{ tag }}</span>
180
+ {% endfor %}
181
+ </td>
182
<td>{{ transaction.category }}</td>
183
<td style="display: block; text-align: center;">
184
<a href="{% url 'admin:bookkeeping_transaction_change' transaction.id %}">
0 commit comments