Digital Rights Management für elektronische Patientenakten
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bookinstance_list_borrowed_user.html 483B

12345678910111213141516171819
  1. {% extends "base_generic.html" %}
  2. {% block content %}
  3. <h1>Borrowed books</h1>
  4. {% if bookinstance_list %}
  5. <ul>
  6. {% for bookinst in bookinstance_list %}
  7. <li class="{% if bookinst.is_overdue %}text-danger{% endif %}">
  8. <a href="{% url 'book-detail' bookinst.book.pk %}">{{bookinst.book.title}}</a> ({{ bookinst.due_back }})
  9. </li>
  10. {% endfor %}
  11. </ul>
  12. {% else %}
  13. <p>There are no books borrowed.</p>
  14. {% endif %}
  15. {% endblock %}