{% extends 'admin.html' %} {% load url from future %} {% block resources_active %} class="active" {% endblock %} {% block content %}
{% if resources %} {% for resource in resources %} {% endfor %}
Name Limitations Created Type
{% if resource.file %} {{ resource.name }}
/static/uploads/{{ resource.file.name }} {% else %}{{ resource.name }}{% endif %}
{% if not resource.limit_to_member_groups.all and not resource.limit_to_member_types.all %} None {% else %} {% if resource.limit_to_member_groups.all %}Groups: {% for group in resource.limit_to_member_groups.all %}{{ group }}{% if not forloop.last %},{% endif %}{% endfor %}
{% endif %} {% if resource.limit_to_member_types.all %}Types: {% for type in resource.limit_to_member_types.all %}{{ type }}{% if not forloop.last %},{% endif %}{% endfor %}
{% endif %} {% endif %}
{{ resource.time }} {{ resource.get_file_type }}
{% else %}

There are no resources in this category

{% endif %}

Back to category listings

{% endblock %}