diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-02 10:10:59 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-02 10:10:59 +0200 |
| commit | 151e42654a4bcfcff408c7799db199c71e81b5c5 (patch) | |
| tree | 02786db1039902c7cc75f76aa7159829299970ac /ishtar_common/templates/ishtar/sheet_organization.html | |
| parent | 661218e0acd24fc3bca76229b61d0cb91a54be1c (diff) | |
| parent | 5eb8667794636e379a8c324da46c617ad365747a (diff) | |
| download | Ishtar-151e42654a4bcfcff408c7799db199c71e81b5c5.tar.bz2 Ishtar-151e42654a4bcfcff408c7799db199c71e81b5c5.zip | |
Merge branch 'master' into v0.9
Diffstat (limited to 'ishtar_common/templates/ishtar/sheet_organization.html')
| -rw-r--r-- | ishtar_common/templates/ishtar/sheet_organization.html | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/ishtar_common/templates/ishtar/sheet_organization.html b/ishtar_common/templates/ishtar/sheet_organization.html index 2ece97a8b..8a47c35f5 100644 --- a/ishtar_common/templates/ishtar/sheet_organization.html +++ b/ishtar_common/templates/ishtar/sheet_organization.html @@ -1,5 +1,5 @@ {% extends "ishtar/sheet.html" %} -{% load i18n window_header %} +{% load i18n window_header window_tables %} {% block head_title %}{% trans "Organization" %}{% endblock %} @@ -15,7 +15,7 @@ {% if item.mobile_phone %}<p><label>{% trans "Mobile phone" %}</label> <span class='value'>{{item.mobile_phone}}</span></p> {% endif %} -<table> +<table class='simple'> <caption>{%trans "Person in the organization"%}</caption> <tr> <th>{% trans "Name" %}</th> @@ -35,4 +35,14 @@ {% endfor %} </table> +{% trans "General contractor organization of archaelogical files" as af %} +{% if item.general_contractor_files.count %} +{% dynamic_table_document af 'files' 'corporation_general_contractor' item.pk '' output %} +{% endif %} + +{% trans "Town planning service of archaelogical files" as af %} +{% if item.planning_service_files.count %} +{% dynamic_table_document af 'files' 'planning_service' item.pk '' output %} +{% endif %} + {% endblock %} |
