diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-07-21 15:10:19 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-10-15 19:32:59 +0200 |
commit | b2b4cc8cca4203bc941c7531e41c8ccd9e8678ab (patch) | |
tree | c76a08780545904d822b69da38d8e2d5eaf4e7f9 /ishtar_common/templates | |
parent | 16146deb2e76bb77f9566e0c3d5f21fd98d0f65c (diff) | |
download | Ishtar-b2b4cc8cca4203bc941c7531e41c8ccd9e8678ab.tar.bz2 Ishtar-b2b4cc8cca4203bc941c7531e41c8ccd9e8678ab.zip |
✨ GIS API: get data sources list
Diffstat (limited to 'ishtar_common/templates')
-rw-r--r-- | ishtar_common/templates/ishtar/gis_token_list.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ishtar_common/templates/ishtar/gis_token_list.html b/ishtar_common/templates/ishtar/gis_token_list.html index ca4389076..ee4efcd19 100644 --- a/ishtar_common/templates/ishtar/gis_token_list.html +++ b/ishtar_common/templates/ishtar/gis_token_list.html @@ -45,9 +45,10 @@ {% with field=request_form.access_type %} {% include "blocks/bs_field_snippet.html" %} {% endwith %} - {% with field=request_form.comment %} + {% with field=request_form.name %} {% include "blocks/bs_field_snippet.html" %} {% endwith %} + <div class="col-lg-6"></div> {% with field=request_form.limit_date %} {% include "blocks/bs_field_snippet.html" %} {% endwith %} @@ -66,14 +67,14 @@ <table class="table table-striped w-50"> <tr> <th>{% trans "Access type (limit date)" %}</th> - <th>{% trans "Comment" %}</th> + <th>{% trans "Name" %}</th> <th>{% trans "Last access (IP)" %}</th> <th>{% trans "Delete" %}</th> </tr> {% for access in object_list %} <tr> <td>{{access.access_type_label}}{% if access.limit_date %} ({{access.limit_date|date:"DATE_FORMAT"|default:"-"}}){% endif %}</td> - <td>{{access.comment|default:"-"}}</td> + <td>{{access.name|default:"-"}}</td> <td>{{access.last_access|date:"DATE_FORMAT"}} ({{access.last_ip|default:"-"}})</td> <td> <a class="btn btn-danger btn-sm" title="{% trans 'Delete' %}" href="{% url 'gis-token-delete' access.key %}" |