diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-10-03 21:18:35 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-10-03 21:18:35 +0300 |
commit | c8163ab0cd08682eae783544b69f31755b85857f (patch) | |
tree | 2094289077966e2be28974e863bda803e965ffdb /templates/logbookentry.html | |
parent | 4495be2083e252802ce9c309b162bab27181ed0f (diff) | |
download | troggle-c8163ab0cd08682eae783544b69f31755b85857f.tar.gz troggle-c8163ab0cd08682eae783544b69f31755b85857f.tar.bz2 troggle-c8163ab0cd08682eae783544b69f31755b85857f.zip |
fix bug for wallet with empty fpath
Diffstat (limited to 'templates/logbookentry.html')
-rw-r--r-- | templates/logbookentry.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/templates/logbookentry.html b/templates/logbookentry.html index d8a4817..9090928 100644 --- a/templates/logbookentry.html +++ b/templates/logbookentry.html @@ -85,15 +85,15 @@ {% if wallets %}<u>Wallets</u> on this date:<br> <span style="font-size: 70%; "> {% for item in wallets %} - <a href="/survey_scans/{{item.walletname|urlencode}}/">{{item.walletname|safe}}</a> - {% if item.name %} - {{item.name|safe}} <br/> - {% else %} - {{item.get_fnames|safe}} - <br/> - {% endif %} + <a href="/survey_scans/{{item.walletname|urlencode}}/">{{item.walletname|safe}}</a> + {% if item.name %} + {{item.name|safe}} <br/> + {% else %} + {{item.get_fnames|safe}} + <br/> + {% endif %} {% empty %} - <em>None found for this date.</em><br> + <em>None found for this date.</em><br> {% endfor %} </span> {% else %} |