dms/templates/dms/site_details.html

12 lines
227 B
HTML

{% extends "./base.html" %}
{% block "content" %}
<h2>{{ site.name }}</h2>
<ul>
{% for doc in documents %}
<li><a href="{% url 'document_details' doc.id %}">{{ doc }}</a></li>
{% endfor %}
</ul>
{% endblock %}