deb-horizon/horizon/templates/base.html
Gabriel Hurley a058bfc1d6 Renames legacy dashboards.
The "Nova" dashboard is now "Project" and the "Syspanel" dashboard
is now "Admin" to match the current real names of the dashboards
which better match their purposes.

Implements blueprint fix-legacy-dashboard-names

Change-Id: I702aa0d54c4e3b0ac10db46e6d6ed32803919b7b
2012-10-03 14:29:24 -07:00

38 lines
1.1 KiB
HTML

{% load branding i18n %}
<!DOCTYPE html>
<html>
<head>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type' />
<title>{% block title %}{% endblock %} - {% site_branding %}</title>
{% include "horizon/_conf.html" %}
{% block css %}
{% include "_stylesheets.html" %}
{% endblock %}
{% include "horizon/client_side/_script_loader.html" %}
</head>
<body id="{% block body_id %}{% endblock %}">
{% block content %}
<div id="container">
{% block sidebar %}
{% include 'horizon/common/_sidebar.html' %}
{% endblock %}
<div id='main_content'>
<div class='topbar'>
{% include "_header.html" %}
{% block page_header %}{% endblock %}
</div>
{% include "horizon/_messages.html" %}
{% block main %}{% endblock %}
</div>
</div>
{% endblock %}
<div id="footer">
{% block footer %}{% endblock %}
</div>
{% block js %}
{% include "horizon/_scripts.html" %}
{% endblock %}
<div id="modal_wrapper" />
</body>
</html>