{% extends "base.html" %} {% block title %}{{ _('UT') }} {{ ut.id_ut if ut and ut.id_ut else _('New') }}{% endblock %} {% block content %}
{% if ut and ut.id_ut %}
{{ _('UT Media') }}
{% if media %}
{% for m in media %}
{% if m.media_type == 'image' %} {% else %}
{% endif %}
{{ m.media_name }}
{% endfor %}
{% else %}

{{ _('No media attached yet.') }}

{% endif %}
{{ _('Upload media') }}
{% endif %}
{% endblock %}