[Django 1.9] Remove load url from future

The "load url from future" must be removed for Django 1.9 support, and
isn't needed in Django 1.8. This patch fixes that to allow Django 1.9
to work.

Change-Id: I9f35aa4d3aa3be2d7a027feab332bac6cccb522e
This commit is contained in:
Thomas Goirand 2016-03-22 00:03:09 +01:00
parent 52ae94844e
commit 60088975d0
2 changed files with 0 additions and 2 deletions

View File

@ -1,6 +1,5 @@
{% extends "horizon/common/_modal_form.html" %} {% extends "horizon/common/_modal_form.html" %}
{% load i18n %} {% load i18n %}
{% load url from future %}
{% block form_id %}launch_form{% endblock %} {% block form_id %}launch_form{% endblock %}
{% block form_action %}{% url "horizon:project:database_clusters:launch" %}{% endblock %} {% block form_action %}{% url "horizon:project:database_clusters:launch" %}{% endblock %}

View File

@ -1,6 +1,5 @@
{% extends "horizon/common/_modal_form.html" %} {% extends "horizon/common/_modal_form.html" %}
{% load i18n %} {% load i18n %}
{% load url from future %}
{% block form_id %}reset_password_form{% endblock %} {% block form_id %}reset_password_form{% endblock %}
{% block form_action %}{% url "horizon:project:database_clusters:reset_password" cluster_id %}{% endblock %} {% block form_action %}{% url "horizon:project:database_clusters:reset_password" cluster_id %}{% endblock %}