summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/sheet_biographicalnote.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/ishtar/sheet_biographicalnote.html')
-rw-r--r--ishtar_common/templates/ishtar/sheet_biographicalnote.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/sheet_biographicalnote.html b/ishtar_common/templates/ishtar/sheet_biographicalnote.html
new file mode 100644
index 000000000..64a6b4d9c
--- /dev/null
+++ b/ishtar_common/templates/ishtar/sheet_biographicalnote.html
@@ -0,0 +1,23 @@
+{% extends "ishtar/sheet.html" %}
+{% load i18n window_field window_tables window_header %}
+
+{% block head_title %}<strong>{% trans "Biographical note"%}</strong> - {{item}}{% endblock %}
+
+{% block toolbar %}
+{% window_nav item window_id 'show-person' 'person_modify' %}
+{% endblock %}
+
+{% block content %}
+
+<div class="row">
+ {% field_flex "Denomination" item.denomination %}
+ {% field_flex "Last name" item.last_name %}
+ {% field_flex "First name" item.first_name %}
+ {% field_flex "Year of birth" item.birth_year %}
+ {% field_flex "Year of death" item.death_year %}
+ {% field_flex_detail "Person" item.person %}
+ {% field_flex_detail "Organization" item.organization %}
+ {% field_flex_full "Biography" item.formatted_biography %}
+</div>
+
+{% endblock %}