diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-20 14:31:50 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-20 16:07:34 +0100 |
commit | caf3138871b7cba6d76a83d4d7ae5123fddf1b8e (patch) | |
tree | c80b9fe57c4aff9ccfbb01af896e8e1bbe11ef49 /ishtar_common/templates | |
parent | b1d246d7045e07200b21049a714027dd72060f84 (diff) | |
download | Ishtar-caf3138871b7cba6d76a83d4d7ae5123fddf1b8e.tar.bz2 Ishtar-caf3138871b7cba6d76a83d4d7ae5123fddf1b8e.zip |
🩹 sheet - geo: limit display of values
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r-- | ishtar_common/templates/ishtar/blocks/sheet_geographic.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/templates/ishtar/blocks/sheet_geographic.html b/ishtar_common/templates/ishtar/blocks/sheet_geographic.html index 6212c9573..d860293a8 100644 --- a/ishtar_common/templates/ishtar/blocks/sheet_geographic.html +++ b/ishtar_common/templates/ishtar/blocks/sheet_geographic.html @@ -18,9 +18,9 @@ <tr> <td>{% if geo.id == geo_item.main_geodata_id %}<i class="fa fa-check-circle text-success" aria-hidden="true"></i>{% else %}–{% endif %}</td> <td>{% if geo.data_type %}{{ geo.data_type }}{% else %}-{% endif %}</td> - <td>{{ geo.source_label }}</td> + <td>{{ geo.source_label|limit_label:120 }}</td> <td>{{ geo.geometry_type_label }}</td> - <td>{{ geo.name }}</td> + <td>{{ geo.name|limit_label:120 }}</td> <td>{% if geo.origin %}{{ geo.origin }}{% else %}-{% endif %}</td> <td>{% if geo.provider %}{{ geo.provider }}{% else %}-{% endif %}</td> <td>{% if geo.acquisition_date %}{{ geo.acquisition_date|date:"DATE_FORMAT"|default:"-" }}{% else %}-{% endif %}</td> |