{% extends "base_generic.html" %} {% load static %} {% block nav-mission %} {% endblock %} {% load static %} {% block content %} {% block small %}

{{ outreach_detail.title|safe }}

{% if outreach_detail.date %}
{{outreach_detail.date}}
{% endif %}
{% if outreach_detail.image %}
{% if outreach_detail.copyright %}
©{{outreach_detail.copyright}}
{% endif %}
{% else %} {% if outreach_detail.image_url %}
©{{outreach_detail.image_url}}
{% endif%} {% endif %}
{% if outreach_detail.abstract %}

{{outreach_detail.abstract|safe|linebreaksbr}}

{% endif %}

{% if outreach_detail.imageabstract %} {% if outreach_detail.imageabstract != outreach_detail.image%}
{% if outreach_detail.get_extension == ".mp4" %} {% else %} {% endif %}
{% if outreach_detail.copyright_imgabstr %}
©{{outreach_detail.copyright_imgabstr}}
{% endif %} {% endif %} {% endif %} {% if outreach_detail.article %}

Full article

{{outreach_detail.article|safe|linebreaksbr}}

{% endif %} {% if outreach_detail.article_url %}
Link to the source: {{outreach_detail.article_url}}
{% endif %} {% if outreach_detail.outreachpdf_set.all %}
Download: {% for c_pdf in outreach_detail.outreachpdf_set.all %} {% if c_pdf.get_extension == ".pdf" %}
PDF
{{ c_pdf.title}}
{% elif c_pdf.get_extension == ".ppt" or c_pdf.get_extension == ".pptx" %}
PPT
{{ c_pdf.title}}
{% endif %} {% endfor %}
{% endif %} {% if outreach_detail.member.all %}
{% with member_list=outreach_detail.member.all|dictsort:"status.order_index" %}
Involved people
{% include "member_list.html" with l=3 m=4 s=6 height=150 member_list=member_list %} {% endwith %} {% endif %} {% if outreach_detail.group.all %}
Related groups
{% include "group_list.html" with group_list=outreach_detail.group.all %} {% endif %} {% if outreach_detail.news.all %}
News
{% include "news_list.html" with news_list=outreach_detail.news.all %} {% endif %} {% if outreach_detail.project.all %}
Related projects
{% include "project_list.html" with l=3 m=4 s=6 project_list=outreach_detail.project.all|dictsortreversed:"end_date" %} {% endif %} {% if outreach_detail.publication.all %}
Related publications
{% include "publication_list.html" with l=3 m=4 s=6 publication_list=outreach_detail.publication.all %} {% endif %}
{% endblock %} {% endblock %}