This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
authentic2-auth-fc/src/authentic2_auth_fc/templates/authentic2_auth_fc/documents.html

13 lines
229 B
HTML

<!DOCTYPE html>
<html>
<body>
<ul>
{% for document in documents %}
<li>
<a href="{% url 'fc-document' doc_id=document.id %}">{{ document.name }}</a>
</li>
{% endfor %}
</ul>
</body>
<html>