{% extends "shared/base.html" %}
{% block title %}
MediaFiles List
{% endblock %}
{% block header %}
MediaFiles..
{% endblock %}
{% block subnav %}
{% include "media/media_nav.html" %}
{% endblock %}
{% block content %}
{% with msg=msg %}
{% include "components/alerts.html" %}
{% endwith %}
| Titel |
Review |
Download |
Actions |
{% for mediafile in mediafiles %}
| {{mediafile.title}} |
{% with check=mediafile.review %}{% include "components/check.html" %}{% endwith %} |
{% with check=mediafile.should_download %}{% include "components/check.html" %}{% endwith %} |
Edit |
Delete |
{% endfor %}
{% endblock %}