~ubuntu-branches/ubuntu/raring/horizon/raring

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/containers/templates/containers/_copy.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Chuck Short
  • Date: 2012-11-23 08:49:14 UTC
  • mfrom: (1.1.22)
  • Revision ID: package-import@ubuntu.com-20121123084914-95m0mzmiicdw64ti
Tags: 2013.1~g1-0ubuntu1
[ Adam Gandelman ]
* debian/patches/add_juju_settings_pannel.patch: Disable during
  Grizzly dev. cycle. 

[ Chuck Short ]
* New upstream relase.
* Refreshed patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "horizon/common/_modal_form.html" %}
 
2
{% load i18n %}
 
3
 
 
4
{% block form_id %}copy_object_form{% endblock %}
 
5
{% block form_action %}{% url horizon:project:containers:object_copy container_name object_name %}{% endblock %}
 
6
 
 
7
{% block modal-header %}{% trans "Copy Object" %}: {{ object_name }}{% endblock %}
 
8
 
 
9
{% block modal-body %}
 
10
<div class="left">
 
11
    <fieldset>
 
12
    {% include "horizon/common/_form_fields.html" %}
 
13
    </fieldset>
 
14
</div>
 
15
<div class="right">
 
16
    <h3>{% trans "Description" %}:</h3>
 
17
    <p>{% trans "Make a new copy of an existing object to store in this or another container. You may also specify a path at which the new copy should live inside of the selected container." %}</p>
 
18
</div>
 
19
{% endblock %}
 
20
 
 
21
{% block modal-footer %}
 
22
    <input class="btn btn-primary pull-right" type="submit" value="{% trans "Copy Object" %}" />
 
23
    <a href="{% url horizon:project:containers:index container_name|add:'/' %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
 
24
{% endblock %}