declare form.media in registration/registration_completion_form.html (fixes #21690)

Without it using for example a date field will not use the Bootstrap datetimepicker
widget on the self edit view.
This commit is contained in:
Benjamin Dauvergne 2018-02-07 15:40:30 +01:00
parent 5c8eb8b6c3
commit ac6f1ad28a
1 changed files with 11 additions and 0 deletions

View File

@ -2,6 +2,17 @@
{% load i18n %}
{% load breadcrumbs %}
{% block css %}
{{ block.super }}
{{ form.media.css }}
{% endblock %}
{% block extra_scripts %}
{{ block.super }}
{{ form.media.js }}
{% endblock %}
{% block title %}
{% trans "Registration" %}
{% endblock %}