{% extends 'base.html' %} {% block body %} {% from 'utils.html' import root with context %}

DLibrary {% block list_title %}{% endblock %}

{% for work in works %}
[{% if work['circle'] %}{{ work['circle'] }}{% endif %}{% if work['circle'] and work['authors'] %} ({% endif %}{{ ', '.join(work['authors']) }}{% if work['circle'] and work['authors'] %}){% endif %}]
{{ work['title'] }}
{% endfor %}
{% endblock %}