{% extends 'base.html' %} {% load i18n %} {% block title %} - {% trans "Documents" %}{% endblock %} {% block rss_url %} {% endblock %} {% block content %} {% trans "Documents" as ch_title %} {% with ch_icon="icon-inbox" ch_title=ch_title ch_bc1=ch_title %} {% include "layout_elements/category_header.html" %} {% endwith %}
{% with ib_content=project.desc_documents %} {% include "info_box/generic.html"%} {% endwith %}
{% for pp in project_part_list_left %} {% with sh_title=pp.name sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %} {% with document_list=pp.related_documents.all %} {% include "info_box/documents.html" %} {% endwith %} {% endfor %}
{% trans "New Documents" as sh_title %} {% with sh_title=sh_title rss_url="rss/" %} {% include "layout_elements/section_header.html" %} {% endwith %}
{% with dd_with_header="yes" %} {% for document in latest_document_list %}
{% include "info_box/document_detail.html" %}
{% endfor %} {% endwith %}
{% for pp in project_part_list_right %} {% with sh_title=pp.name sh_url_title="" %} {% include "layout_elements/section_header.html" %} {% endwith %} {% with document_list=pp.related_documents.all %} {% include "info_box/documents.html" %} {% endwith %} {% endfor %}
{% endblock %}