summaryrefslogtreecommitdiff
path: root/templates/asset.html.tera
diff options
context:
space:
mode:
authorBenedict Börger <benedict@0xb8000.de>2019-04-27 22:03:20 +0200
committerBenedict Börger <benedict@0xb8000.de>2019-04-27 22:03:20 +0200
commit36716cf5a971811019280614f8d6ea68c91cdba8 (patch)
tree94666c35227f9b85c6486a3fc827b08fb0b8b835 /templates/asset.html.tera
parentef11513f9385b3fb6b52eb90cf873a17f2a1d90b (diff)
[web_frontend] adapt URLs to be ablte to address spefic accounts
Diffstat (limited to 'templates/asset.html.tera')
-rw-r--r--templates/asset.html.tera2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/asset.html.tera b/templates/asset.html.tera
index bd0e5b9..9e768d7 100644
--- a/templates/asset.html.tera
+++ b/templates/asset.html.tera
@@ -57,7 +57,7 @@
{% set amount_sum = 0 %}
{% for account in accounts %}
<tr>
- <td>{{ account.name }}</td>
+ <td><a href="/transactions/{{ account.name }}">{{ account.name }}</a></td>
<td>{{ account.category }}</td>
{% if account.balance >= 0 %}
<td class="text-success">{{ account.balance | round(method="common", precision=2)}}</td>