54e0caea1464568c4883ba0fcac71cb489966796
[redakcja.git] / src / catalogue / templates / catalogue / author_description.html
1 <dl>
2   {% if obj.date_of_birth or obj.year_of_birth or obj.century_of_birth or obj.place_of_birth %}
3     <dt>Ur.</dt>
4     <dd>
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 }}
11       {% endif %}
12       {% if obj.place_of_birth %}
13         w
14         {% if obj.place_of_birth.locative %}
15           {{ obj.place_of_birth.locative }}
16         {% else %}
17           {{ obj.place_of_birth.name }}
18         {% endif %}
19       {% endif %}
20     </dd>
21   {% endif %}
22   {% if obj.date_of_death or obj.year_of_death or obj.century_of_death or obj.place_of_death %}
23     <dt>Zm.</dt>
24     <dd>
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 }}
31       {% endif %}
32       {% if obj.place_of_death %}
33         w
34         {% if obj.place_of_death.locative %}
35           {{ obj.place_of_death.locative }}
36         {% else %}
37           {{ obj.place_of_death.name }}
38         {% endif %}
39       {% endif %}
40     </dd>
41   {% endif %}
42
43   {% if obj.notablebook_set.exists %}
44     <dt>Najważniejsze dzieła:</dt>
45     <dd>
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 %}
49       {% endfor %}
50     </dd>
51   {% endif %}
52
53 </dl>
54
55 {{ obj.description|safe }}