tuskar-ui/openstack_dashboard/templates/base.html
Gabriel Hurley 3a6ffe81d8 Added AJAX updating error handling.
* Splits the AJAX complete method into complete, success, and error.
  * Cleans up 404 (e.g. gone/deleted) handling.
  * Adds 5XX error handling.
  * Adds client-side alert message templating.
  * Adds client-side conf (debug and static_url) loaded from backend.

Fixes bug 957461.

Change-Id: I5114430d35e2d20603e817651540b2db1f8a4d07
2012-03-18 19:32:46 -07:00

32 lines
865 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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