3a6ffe81d8
* 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
32 lines
865 B
HTML
32 lines
865 B
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 %} 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>
|