diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-05-22 13:34:41 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-05-22 13:34:41 +0200 |
commit | 5933b13aa38c1cc9532c5a086bfe90d9a9b15f49 (patch) | |
tree | ae06fa2cc14bd7449e1a68404133abaf270f22fd /archaeological_operations/templates/ishtar/blocks | |
parent | 6be5aeead1839e68de38ef2768143aaa5b0f7149 (diff) | |
download | Ishtar-5933b13aa38c1cc9532c5a086bfe90d9a9b15f49.tar.bz2 Ishtar-5933b13aa38c1cc9532c5a086bfe90d9a9b15f49.zip |
Template admin act list: add link
Diffstat (limited to 'archaeological_operations/templates/ishtar/blocks')
-rw-r--r-- | archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html b/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html index 25c1118f9..8ea08cc22 100644 --- a/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html +++ b/archaeological_operations/templates/ishtar/blocks/window_tables/administrativacts.html @@ -1,8 +1,9 @@ -{% load i18n %} +{% load i18n link_to_window %} <h3>{{caption}}</h3> <table class="table table-striped"> <thead> <tr> + <th></th> <th>{% trans "Ref." %}</th> <th>{% trans "Type" %}</th> <th>{% trans "Date" %}</th> @@ -12,6 +13,7 @@ <tbody> {% for act in data %} <tr> + <td>{{act|simple_link_to_window}}</td> <td>{{act.full_ref}}</td> <td class='string'>{{act.act_type}}</td> <td>{{act.signature_date}}</td> |