{% extends "ausleihe/base.html" %} {% load static %} {% block content %}
{% if medium_list %} {% for medium in medium_list %} {% endfor %}
Nr. enthält
{{ medium }} {% for buch in medium.buecher.all %} 📚 {{ buch }}{% if not forloop.last %}, {% endif %} {% endfor %} {% if medium.buecher.exists and medium.skillsets.exists %}
{% endif %} {% for skillset in medium.skillsets.all %} 🧰 {{ skillset }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% else %}

Bisher sind keine Medien vorhanden.

{% endif %}
{% endblock content %}