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

« back to all changes in this revision

Viewing changes to .pc/git-2012.1~e2~20111201.1077.patch/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/index.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-09 16:18:55 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20111209161855-nguyenpghx2o2lqy
Tags: 2012.1~e2~20111209.1104-0ubuntu1
* New upstream release.
* Refreshed patches.
* debian/docs: Removed README

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% extends 'syspanel/base.html' %}
2
 
{%load i18n%}
3
 
 
4
 
{% block sidebar %}
5
 
  {% with current_sidebar="tenants" %}
6
 
    {{block.super}}
7
 
  {% endwith %}
8
 
{% endblock %}
9
 
 
10
 
{% block page_header %}
11
 
  {% url horizon:syspanel:tenants:index as refresh_link %}
12
 
  {# to make searchable false, just remove it from the include statement #}
13
 
  {% include "horizon/common/_page_header.html" with title=_("Tenants") refresh_link=refresh_link searchable="true" %}
14
 
{% endblock page_header %}
15
 
 
16
 
{% block syspanel_main %}
17
 
  {% include "syspanel/tenants/_list.html" %}
18
 
  <a id="tenant_create_link" class="action_link large-rounded" href="{% url horizon:syspanel:tenants:create %}">{% trans "Create New Tenant"%}</a>
19
 
{% endblock %}
20
 
 
21
 
 
22
 
 
23
 
 
24
 
 
25