~ubuntu-branches/ubuntu/trusty/horizon/trusty-updates

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/routers/templates/routers/extensions/routerrules/_create.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-12-05 14:39:15 UTC
  • mfrom: (1.1.35)
  • Revision ID: package-import@ubuntu.com-20131205143915-40991ba69inywk0u
Tags: 1:2014.1~b1-0ubuntu1
* New upstream release.
* debian/control: open icehouse release.
* debian/static/openstack-dashboard: Refreshed static assets.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "horizon/common/_modal_form.html" %}
 
2
{% load i18n %}
 
3
{% load url from future %}
 
4
 
 
5
{% block form_id %}add_routerrule_form{% endblock %}
 
6
{% block form_action %}{% url 'horizon:project:routers:addrouterrule' router.id %}
 
7
{% endblock %}
 
8
 
 
9
{% block modal-header %}{% trans "Add Router Rule" %}{% endblock %}
 
10
 
 
11
{% block modal-body %}
 
12
<div class="left">
 
13
    <fieldset>
 
14
        {% include "horizon/common/_form_fields.html" %}
 
15
    </fieldset>
 
16
</div>
 
17
<div class="right">
 
18
    <h3>{% trans "Description" %}:</h3>
 
19
    <p>
 
20
    {% trans "Routing rules to apply to router. Rules are matched by most specific source first and then by most specific destination." %}<br/>
 
21
    {% trans "The next hop addresses can be used to override the router used by the client." %}
 
22
    </p>
 
23
</div>
 
24
{% endblock %}
 
25
 
 
26
{% block modal-footer %}
 
27
  <input class="btn btn-primary pull-right" type="submit" value="{% trans "Add rule" %}" />
 
28
  <a href="{% url 'horizon:project:routers:index' %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
 
29
{% endblock %}