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

« back to all changes in this revision

Viewing changes to openstack_dashboard/templates/base.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
{% load branding i18n %}
 
2
<!DOCTYPE html>
 
3
<html>
 
4
  <head>
 
5
    <meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
 
6
    <title>{% block title %}{% endblock %} – {% site_branding %} Dashboard</title>
 
7
    {% block css %}
 
8
      {% include "_stylesheets.html" %}
 
9
    {% endblock %}
 
10
  </head>
 
11
  <body id="{% block body_id %}{% endblock %}">
 
12
    {% block content %}
 
13
      <div id="container">
 
14
        {% block sidebar %}{% endblock %}
 
15
        <div id='main_content'>
 
16
          <div class='topbar'>
 
17
          {% include "_header.html" %}
 
18
          {% block page_header %}{% endblock %}
 
19
          </div>
 
20
          {% block main %}{% endblock %}
 
21
        </div>
 
22
      </div>
 
23
    {% endblock %}
 
24
    <div id="footer">
 
25
      {% block footer %}{% endblock %}
 
26
    </div>
 
27
    {% block js %}
 
28
      {% include "_scripts.html" %}
 
29
      {% include "horizon/client_side/_modal.html" %}
 
30
    {% endblock %}
 
31
  </body>
 
32
</html>