summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/sheet_biographicalnote.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2024-02-16 15:58:53 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2024-02-18 15:06:36 +0100
commit4e7482c127cc93647975438a45dca5ed796fdaeb (patch)
tree1450b11f202adf561e5b4b45dcb9a3e284d004cb /ishtar_common/templates/ishtar/sheet_biographicalnote.html
parentdf65704a56b0a36902b48ba63e0141f2583abd3e (diff)
downloadIshtar-4e7482c127cc93647975438a45dca5ed796fdaeb.tar.bz2
Ishtar-4e7482c127cc93647975438a45dca5ed796fdaeb.zip
✨ Biographical note sheet
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 %}