~ubuntu-branches/ubuntu/precise/horizon/precise-updates

« back to all changes in this revision

Viewing changes to horizon/horizon/dashboards/settings/templates/settings/project/_openrc.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-03-02 12:11:59 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120302121159-65b88lcl4slve26i
Tags: 2012.1~e4-0ubuntu1
* New upstream version.
* debian/rules: Update due to upstream build changes.
* debian/control: Update standards-version.
* debian/patches/openstack-config-settings.patch: Dropped
* debian/patches/fix-dashboard-django-wsgi.patch: Refreshed
* debian/patches/fix-dashboard-manage.patch: Refreshed
* debian/openstack-dashboard.install: Update due to upstream build changes.
* debian/dashboard: Update to upstream build changes.
* debian/pydist-overrides: Dont try to install python-django-nose-selenium.
* debian/openstack-dashboard.install: Add missing config files.
* debian/rules: Fix broken settings.py
* debian/patches/pkg-setup.patch: Copy missing templates, shameously
  taken from debian
* debian/patches/fix-broken-tarbll.patch: Add missing files.

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 %}openrc_download_form{% endblock %}
5
 
{% block form_action %}{% url horizon:settings:project:index %}{% endblock %}
6
 
 
7
 
{% block modal_id %}language_settings_modal{% endblock %}
8
 
{% block modal-header %}{% trans "Download RC File" %}{% endblock %}
9
 
 
10
 
{% block modal-body %}
11
 
<div class="left">
12
 
    <fieldset>
13
 
    {% include "horizon/common/_form_fields.html" %}
14
 
    </fieldset>
15
 
</div>
16
 
<div class="right">
17
 
    <h3>{% trans "Description:" %}</h3>
18
 
    <p>{% trans 'Download the RC file for the selected project, then type "source openrc" in the terminal to configure your environment to communicate with OpenStack.' %}</p>
19
 
</div>
20
 
{% endblock %}
21
 
 
22
 
{% block modal-footer %}
23
 
    <input class="btn btn-primary pull-right" type="submit" value="{% trans "Download RC File" %}" />
24
 
    {% if hide %}<a href="{% url horizon:settings:project:index %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>{% endif %}
25
 
{% endblock %}
26