blob: 64a6b4d9c0b1fb374505f31998d96d3b3c260cc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 %}
|