2 {% if obj.date_of_birth or obj.year_of_birth or obj.century_of_birth or obj.place_of_birth %}
5 {% if obj.year_of_birth_inexact %}ok. {% endif %}
6 {% if obj.date_of_birth %}
7 {{ obj.date_of_birth }}
8 {% elif obj.year_of_birth %}
9 {{ obj.year_of_birth_description }}
10 {% elif obj.century_of_birth %}
11 {{ obj.birth_century_description }}
13 {% if obj.place_of_birth %}
15 {% if obj.place_of_birth.locative %}
16 {{ obj.place_of_birth.locative }}
18 {{ obj.place_of_birth.name }}
23 {% if obj.date_of_death or obj.year_of_death or obj.century_of_death or obj.place_of_death %}
26 {% if obj.year_of_death_inexact %}ok. {% endif %}
27 {% if obj.date_of_death %}
28 {{ obj.date_of_death }}
29 {% elif obj.year_of_death %}
30 {{ obj.year_of_death_description }}
31 {% elif obj.century_of_death %}
32 {{ obj.death_century_description }}
34 {% if obj.place_of_death %}
36 {% if obj.place_of_death.locative %}
37 {{ obj.place_of_death.locative }}
39 {{ obj.place_of_death.name }}
45 {% if obj.notablebook_set.exists %}
46 <dt>Najważniejsze dzieła:</dt>
48 {% for nb in obj.notablebook_set.all %}
49 <i>{{ nb.book.title }}</i>{% if nb.book.original_year %}
50 ({{ nb.book.original_year }}){% endif %}{% if not forloop.last %}, {% endif %}
57 {{ obj.description|safe }}