{% extends "base.html" %} {% block title %}Bibliothek - {{ APP_VERSION }}{% endblock %} {% block content %}

📚 Bibliothek

Bücher, CDs und weitere Medien

{% if library_items %} {% for item in library_items %}
{% if item.get('Image') %} {{ item.Name }} {% else %}
📚
{% endif %}

{{ item.Name }}

{% if item.get('Author') %}

Von: {{ item.Author }}

{% endif %} {% if item.get('ISBN') %}

ISBN: {{ item.ISBN }}

{% endif %}
{{ item.get('ItemType', 'Medium') }} {% if item.get('Verfuegbar') == False %}Ausgeliehen{% else %}Verfügbar{% endif %}
{% if item.get('Verfuegbar') == True %} {% else %} {% endif %}
{% endfor %} {% else %}

Keine Bibliotheks-Medien gefunden

{% endif %}
{% endblock %}