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

« back to all changes in this revision

Viewing changes to horizon/dashboards/nova/templates/nova/networks/index.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-03-09 11:50:22 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20120309115022-ymiww5i58rbg97my
Tags: 2012.1~rc1~20120308.1479-0ubuntu1
* New upstream version.
* debian/rules: Fix symlink when installing horizon.
  (LP: #947118)
* debian/control: Add python-django-nose as a dep. (LP: #944235)
* debian/control: Fix broken depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends 'nova/base.html' %}
2
 
{% load i18n %}
3
 
{% block title %}Networks{% endblock %}
4
 
 
5
 
{% block page_header %}
6
 
  {% url horizon:nova:networks:index as refresh_link %}
7
 
  {# to make searchable false, just remove it from the include statement #}
8
 
  {% include "horizon/common/_page_header.html" with title=_("Networks") refresh_link=refresh_link searchable="true" %}
9
 
{% endblock page_header %}
10
 
 
11
 
{% block dash_main %}
12
 
    {{ table.render }}
13
 
{% endblock %}