diff options
| -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> | 
