diff options
Diffstat (limited to 'archaeological_operations/templates/ishtar/blocks')
-rw-r--r-- | archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html b/archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html index e19b729fe..9885680d7 100644 --- a/archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html +++ b/archaeological_operations/templates/ishtar/blocks/window_tables/parcels.html @@ -11,8 +11,8 @@ {% for parcel in item.grouped_parcels %} <tr> <td class='string'>{{parcel.town}}</td> - <td>{% if parcel.year %}{{parcel.year}}{% endif %}</td> - <td>{{parcel.section}}</td> + <td>{{parcel.year|default_if_none:"-"}}</td> + <td>{{parcel.section|default_if_none:"-"}}</td> <td>{{parcel.parcel_numbers|join:", "}}</td> {#<td class='string'>{{operation.parcel.owner}}</td>#} </tr> |