{% extends "common/base.j2" %} {% block body_content %}

{{ _("Videos related to GNUnet") }}

{% for item in videosdata %}

{{ item['name']|e }} ({{ item['year'] }})

Name: {% if item['name'] %} {{ item['name']|e }} {% endif %}
Authors: {% if item['authors'] %} {% for name in item['authors'] %} {{ name|e }} {% if not loop.last %} , {% endif %} {% endfor %} {% endif %}
Location: {% if item['location'] %} {{ item['location']|e }} {% endif %}
Description: {% if item['description'] %} {{ item['description']|e }} {% endif %}
Year: {% if item['year'] %}{{ item['year'] }}{% endif %}
Slides: {% if item['slides'] %} {% for slide in item['slides'] %} Slide {{ loop.index }} {% if not loop.last %} , {% endif %} {% endfor %} {% endif %}
Mirrors: {% if item['mirror_sources'] %} {% for mirror in item['mirror_sources'] %} Mirror Source {{ loop.index }} {% if not loop.last %} , {% endif %} {% endfor %} {% endif %}
{% if item['comment'] %} Comment: {{ item['comment']|e }} {% endif %}

{% endfor %}
{% endblock body_content %}