diff --git a/templates/cavewallets.html b/templates/cavewallets.html
index 20dfb0c..86c85b9 100644
--- a/templates/cavewallets.html
+++ b/templates/cavewallets.html
@@ -27,7 +27,7 @@ traced to produce Tunnel or Therion drawings and eventually the final complete c
{{wallet.walletname}} |
{% if wallet.date %}{{wallet.date}}{% else %} {% endif %} |
- {{wallet.name}} |
+ {% if wallet.name %}{{wallet.name}}{% else %} {% endif %} |
{{wallet.persons}} |
{{wallet.singlescan_set.all|length}} |
diff --git a/templates/personwallets.html b/templates/personwallets.html
index c7ea152..dd1ae20 100644
--- a/templates/personwallets.html
+++ b/templates/personwallets.html
@@ -26,7 +26,7 @@ traced to produce Tunnel or Therion drawings and eventually the final complete c
{{wallet.walletname}} |
{% if wallet.date %}{{wallet.date}}{% else %} {% endif %} |
- {{wallet.name}} |
+ {% if wallet.name %}{{wallet.name}}{% else %} {% endif %} |
{{wallet.persons}} |
{{wallet.cave}} |
diff --git a/templates/yearwallets.html b/templates/yearwallets.html
index 40f1379..3036ccc 100644
--- a/templates/yearwallets.html
+++ b/templates/yearwallets.html
@@ -26,7 +26,7 @@ traced to produce Tunnel or Therion drawings and eventually the final complete c
{{wallet.walletname}} |
{% if wallet.date %}{{wallet.date}}{% else %} {% endif %} |
- {{wallet.name}} |
+ {% if wallet.name %}{{wallet.name}}{% else %} {% endif %} |
{{wallet.persons}} |
{{wallet.cave}} |