~zulcss/horizon/horizon-g3-precise

« back to all changes in this revision

Viewing changes to horizon/dashboards/nova/templates/nova/images_and_snapshots/images/launch.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-06-01 10:57:56 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120601105756-dif0km7n98vhdi2x
Tags: 2012.2~f2~20120530.1777-0ubuntu1
* New upstream release. 
* debian/patches/add_juju_settings_panel.patch: Refreshed
* debian/patches/turn-off-debug.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends 'nova/base.html' %}
2
 
{% load i18n %}
3
 
{% block title %}Launch Image{% endblock %}
4
 
 
5
 
{% block sidebar %}
6
 
  {% with current_sidebar="images" %}
7
 
    {{block.super}}
8
 
  {% endwith %}
9
 
{% endblock %}
10
 
 
11
 
{% block page_header %}
12
 
  {# to make searchable false, just remove it from the include statement #}
13
 
  {% include "horizon/common/_page_header.html" with title=_("Launch Instance") %}
14
 
{% endblock page_header %}
15
 
 
16
 
{% block dash_main %}
17
 
  {% include 'nova/images_and_snapshots/images/_launch.html' with image_id=image.id %}
18
 
{% endblock %}
19