2   {% if obj.date_of_birth or obj.place_of_birth %}
 
   5       {% if obj.date_of_birth %}
 
   6         {{ obj.date_of_birth }}
 
   8       {% if obj.place_of_birth %}
 
  10         {% if obj.place_of_birth.locative %}
 
  11           {{ obj.place_of_birth.locative }}
 
  13           {{ obj.place_of_birth.name }}
 
  18   {% if obj.date_of_death or obj.place_of_death %}
 
  21       {% if obj.date_of_death %}
 
  22         {{ obj.date_of_death }}
 
  24       {% if obj.place_of_death %}
 
  26         {% if obj.place_of_death.locative %}
 
  27           {{ obj.place_of_death.locative }}
 
  29           {{ obj.place_of_death.name }}
 
  35   {% if obj.notablebook_set.exists %}
 
  36     <dt>Najważniejsze dzieła:</dt>
 
  38       {% for nb in obj.notablebook_set.all %}
 
  39         <i>{{ nb.book.title }}</i>{% if nb.book.original_year %}
 
  40           ({{ nb.book.original_year }}){% endif %}{% if not forloop.last %}, {% endif %}
 
  47 {{ obj.description|safe }}