4         <td><a href="{% url 'catalogue_html' book.pk %}">{{ book.meta.title }}</a></td>
 
   6             {% if book.owner_user %}
 
   7                 {{ book.owner_user.first_name }} {{ book.owner_user.last_name }}
 
   9                 <a href="{{ book.owner_organization.get_absolute_url }}">{{ book.owner_organization }}</a>
 
  12                 <a href="{% url 'catalogue_book_owner' book.pk %}">({% trans "change" %})</a>
 
  15         <td>{{ book.stage|default:"–" }}</td>
 
  16         <td class="{% if book.is_overdue %}alert-danger{% endif %}">{% if book.assigned_to %}{{ book.assigned_to.first_name }} {{ book.assigned_to.last_name }}{% endif %}</td>
 
  17         <td class="{% if book.is_overdue %}alert-danger{% endif %}">{{ book.get_plan.deadline|default:"–" }}</td>
 
  20                 <div class="btn-group-vertical">
 
  21                     <a class="btn btn-default" href="{% url 'wiki_editor' book.pk %}">{% trans "Edit" %}</a>
 
  22                     <a class="btn btn-default" href="{% url 'catalogue_book_schedule' book.pk %}">{% trans "Schedule" %}</a>
 
  23                     <a class="btn btn-default" href="{% url 'catalogue_book_delete' book.pk %}">{% trans "Delete" %}</a>