Create Router on network topology fails

- just wrong definition of urls, missing '
- also add '{% load url from 'future' %} to maintain Django 1.4
  compatibility

Fixes bug 1219078

Change-Id: I661ab0561bab24c1af864a7fbd0e6913f6dfed06
This commit is contained in:
Ladislav Smola 2013-09-05 16:50:38 +02:00
parent a6f39bc74a
commit 9a8b8d757e
1 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
{% extends "horizon/common/_modal_form.html" %}
{% load i18n horizon humanize %}
{% load url from future %}
{% block form_id %}{% endblock %}
{% block form_action %}{% url horizon:project:network_topology:createrouter %}?{{ request.GET.urlencode }}{% endblock %}
{% block form_action %}{% url 'horizon:project:network_topology:createrouter' %}?{{ request.GET.urlencode }}{% endblock %}
{% block modal_id %}create_router_modal{% endblock %}
{% block modal-header %}{% trans "Create router" %}{% endblock %}
@ -17,5 +18,5 @@
{% block modal-footer %}
<input class="btn btn-primary pull-right" type="submit" value="{% trans "Create router" %}" />
<a href="{% url horizon:project:network_topology:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
<a href="{% url 'horizon:project:network_topology:index' %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
{% endblock %}