{% extends 'base.html' %} {% load i18n %} {% block title %} - {{ document }}{% endblock %} {% block content %} {% trans "Documents" as ph_bc1 %} {% trans "documents_url" as ph_bc1_url %} {% trans "Document" as ph_bc2 %} {% with ph_icon="icon-inbox" ph_title=document.title ph_bc1=ph_bc1 ph_bc1_url=ph_bc1_url ph_bc2=ph_bc2 %} {% include "layout_elements/page_header.html" %} {% endwith %}
{% include "info_box/document_detail.html" %}
{% if site_config.pdf_viewer %} {% if query_string %}
{% trans "Results for" %} "{{ query_string }}" {% trans "on the following pages"%}: {% for page in found_pages %} {{ page.number }} {% endfor %}
{% endif %} {% if site_config.pdf_viewer == 'STANDARD' %} {% include "info_box/pdf_viewer.html" %} {% else%} {% if document.pdf_images_generated %} {% include "info_box/pdf_viewer.html" %} {% else %}
{% trans "This document was just uploaded and is processed for presentation right now. This procedure can take a few minutes." %}
{% endif %} {% endif %} {% endif %}
{% if site_config.browser = 'MSIE' %}
{% trans "The Internet Explorer is supporting only a basic version of the pdf viewer. Please use one of the following browsers for full functionality: Firefox, Chrome, Safari, Opera" %}
{% endif %}
{% trans "Click on the tags for searching the document." %}
{% trans "All" %}            
{% trans "If different page numbers are referring to the declaration in the PDF viewer and not the declaration inside the document itself."%}
{% trans "Comments" as sh_title %} {% trans "New" as sh_url_title %} {% trans "comments_url" as comments_url %} {% with sh_title=sh_title sh_icon="icon-comments" sh_url_title=sh_url_title sh_url="#CommentModal" modal_url="yes" rss_url=comments_url|add:"rss/" %} {% include "layout_elements/section_header.html" %} {% endwith %} {% with form=comment_form form_valid=comment_form_valid commented_object1=document %} {% include "dialogs/comment.html" %} {% endwith %} {% include "info_box/comments.html" %}
{% endblock %}