{% extends 'base.html' %} {% load i18n %} {% block title %} - {{ event }}{% endblock %} {% block content %} {% trans "Events" as ph_bc1 %} {% trans "events_url" as ph_bc1_url %} {% trans "Event" as ph_bc2 %} {% with ph_icon="icon-time" ph_title=event.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/event_detail.html" %}
{% if document_list %} {% trans "Documents" as sh_title %} {% with sh_title=sh_title sh_ec_id="d_1" document_list=document_list %} {% include "info_box/documents.html" %} {% endwith %} {% endif %} {% with web_source_list=event.web_sources.all %} {% include "info_box/web_sources.html" %} {% endwith %}
{% if question_list.count > 0 %} {% include "info_box/questions.html" %} {% endif %} {% if content_document_list %} {% trans "Document Contents" as sh_title %} {% with sh_title=sh_title sh_ec_id="d_2" document_list=content_document_list %} {% include "info_box/documents.html" %} {% endwith %} {% endif %} {% 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=event %} {% include "dialogs/comment.html" %} {% endwith %} {% include "info_box/comments.html" %}
{% endblock %}