{% extends "base.html" %} {% load static %} {% load custom_tags_and_filters %} {% block extrahead %} {% endblock %} {% block title %}Bulk upload{% endblock %} {% block content %}

Bulk upload

{% if upload_types %}
{% for t in upload_types %}

{{ t.title }}

{{ t.description }}

{% if t.slug not in creatable_slugs %}

You can open this page, but you need permission to add these records before Create will work.

{% endif %}
{% endfor %}
{% else %}
No upload types are available yet.
{% endif %} {% endblock %}