diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-10-28 02:28:08 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-10-28 02:28:08 +0100 |
commit | 67ccea36c7762c4e236e821cad6c03f8f22237a4 (patch) | |
tree | 79d40d45e44ee16a245987feda1d279f5b5fe6b5 /ishtar_common/templates/ishtar/sheet_person.html | |
parent | e49a2e410551502009e7110023a78b608c02a33c (diff) | |
download | Ishtar-67ccea36c7762c4e236e821cad6c03f8f22237a4.tar.bz2 Ishtar-67ccea36c7762c4e236e821cad6c03f8f22237a4.zip |
Better title for sheets (refs #1372)
Diffstat (limited to 'ishtar_common/templates/ishtar/sheet_person.html')
-rw-r--r-- | ishtar_common/templates/ishtar/sheet_person.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ishtar_common/templates/ishtar/sheet_person.html b/ishtar_common/templates/ishtar/sheet_person.html index 61b87654d..88fe59f41 100644 --- a/ishtar_common/templates/ishtar/sheet_person.html +++ b/ishtar_common/templates/ishtar/sheet_person.html @@ -1,10 +1,14 @@ {% extends "ishtar/sheet.html" %} {% load i18n %} + +{% block head_sheet %} +{{block.super}} +<h1>{% trans "Person"%}</h1> +{% endblock %} + {% block content %} <div class='tool'>{%trans "Export as:"%} <a href='{% url show-person item.pk "odt" %}'>{%trans "OpenOffice.org file"%}</a>, <a href='{% url show-person item.pk "pdf" %}'>{%trans "PDF file"%}</a></div> -<h3>{% trans "Person"%}</h3> - <p><label>{% trans "Name" %}</label> <span class='value'>{{item.name}}</span></p> <p><label>{% trans "Surname" %}</label> <span class='value'>{{item.surname}}</span></p> {% if item.email %}<p><label>{% trans "Email" %}</label> <span class='value'>{{item.email}}</span></p>{% endif %} |