2 {% if obj.date_of_birth or obj.year_of_birth or obj.century_of_birth or obj.place_of_birth %}
5 {% if obj.date_of_birth %}
6 {{ obj.date_of_birth }}
7 {% elif obj.year_of_birth %}
8 {{ obj.year_of_birth }}
9 {% elif obj.century_of_birth %}
10 {{ obj.birth_century_description }}
12 {% if obj.place_of_birth %}
14 {% if obj.place_of_birth.locative %}
15 {{ obj.place_of_birth.locative }}
17 {{ obj.place_of_birth.name }}
22 {% if obj.date_of_death or obj.year_of_death or obj.century_of_death or obj.place_of_death %}
25 {% if obj.date_of_death %}
26 {{ obj.date_of_death }}
27 {% elif obj.year_of_death %}
28 {{ obj.year_of_death }}
29 {% elif obj.century_of_death %}
30 {{ obj.death_century_description }}
32 {% if obj.place_of_death %}
34 {% if obj.place_of_death.locative %}
35 {{ obj.place_of_death.locative }}
37 {{ obj.place_of_death.name }}
43 {% if obj.notablebook_set.exists %}
44 <dt>Najważniejsze dzieła:</dt>
46 {% for nb in obj.notablebook_set.all %}
47 <i>{{ nb.book.title }}</i>{% if nb.book.original_year %}
48 ({{ nb.book.original_year }}){% endif %}{% if not forloop.last %}, {% endif %}
55 {{ obj.description|safe }}