{% extends "admin/change_form.html" %} {% load cms_admin cms_static i18n djangocms_modules_tags %} {% block content %}

{% trans "Add module" %}

{% get_module_url module as module_link %}
{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %}
{% with module_name=module.module_name %}

{% blocktrans %}Are you sure you want to add module {{ module_name }}?{% endblocktrans %}

{% endwith %} {% for field in form.visible_fields %}
{% if field.errors %}{{ field.errors }}{% endif %} {{ field.label_tag }} {{ field }}
{% endfor %}
{% endblock %}