diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-16 15:58:53 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:41:51 +0200 |
| commit | f6c6695b19f6d75dc5fa6da0d1389f90f24835bc (patch) | |
| tree | 993de482bd8e9be26a8ac295e06b501f8a2b39dc /ishtar_common/templates/ishtar/sheet_biographicalnote.html | |
| parent | f05d73437dd9b7703cd225f5bf84446a3c443900 (diff) | |
| download | Ishtar-f6c6695b19f6d75dc5fa6da0d1389f90f24835bc.tar.bz2 Ishtar-f6c6695b19f6d75dc5fa6da0d1389f90f24835bc.zip | |
✨ Biographical note sheet
Diffstat (limited to 'ishtar_common/templates/ishtar/sheet_biographicalnote.html')
| -rw-r--r-- | ishtar_common/templates/ishtar/sheet_biographicalnote.html | 23 |
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 %} |
