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.

book_list.html 357B

12345678910111213141516
  1. {% extends "base_generic.html" %}
  2. {% block content %}
  3. <h1>Book List</h1>
  4. {% if book_list %}
  5. <ul>
  6. {% for book in book_list %}
  7. <li>
  8. <a href="{{ book.get_absolute_url }}">{{ book.title }}</a> ({{book.author}})
  9. </li>
  10. {% endfor %}
  11. </ul>
  12. {% else %}
  13. <p>There are no books in the library.</p>
  14. {% endif %}
  15. {% endblock %}