home » zplus/dokk.org.git
ID: 5041e9e90951e763f8251c822e05515297ea2c9f
32 lines — 725B — View raw


{% extends "base.html" %}

{% block title %}Library{% endblock %}

{% block body %}

<div class="library">
{% for item in data["@graph"]|sort(attribute="library:title") %}
    <p>
        <div>
            <a href="/library/{{ item['@id'][8:] }}">{{ item['library:title'] }}</a>
        </div>

        <div>
            Authors:
            {% for author in item["library:author"]|sort() %}
                {{ author }}
            {% endfor%}
        </div>

        <div>
            License:
            {% for license in item["library:license"]|sort(attribute="license:id") %}
                {{ license['license:id'] }}
            {% endfor%}
        </div>
    </p>
    <br/><br/>
{% endfor %}
</div>

{% endblock %}