56 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 | |
| <html xmlns="http://www.w3.org/1999/xhtml" lang="{{ LANGUAGE_CODE }}" xml:lang="{{ LANGUAGE_CODE }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
 | |
| <head>
 | |
| <title>{% block title %}{% endblock %}</title>
 | |
| <link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% load admin_static %}{% static "admin/css/base.css" %}{% endblock %}" />
 | |
| {% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %}
 | |
| {% block extrastyle %}{% endblock %}
 | |
| {% block extrahead %}{% endblock %}
 | |
| {% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
 | |
| </head>
 | |
| {% load i18n %}
 | |
| 
 | |
| <body class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}">
 | |
| 
 | |
| <!-- Container -->
 | |
| <div id="container">
 | |
| 
 | |
|     {% if not is_popup %}
 | |
|     <!-- Header -->
 | |
|     <div id="header">
 | |
|         <div id="branding">
 | |
|         <h1>Autotest Administration</h1>
 | |
|         </div>
 | |
|         {% if user.is_authenticated and user.is_staff %}
 | |
|         <div id="user-tools">{% trans 'Welcome,' %} <strong>{% if user.first_name %}{{ user.first_name|escape }}{% else %}{{ user.username }}{% endif %}</strong>. <a href="/afe">Go to Frontend</a></div>
 | |
|         {% endif %}
 | |
|         {% block nav-global %}{% endblock %}
 | |
|     </div>
 | |
|     <!-- END Header -->
 | |
|     {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">{% trans 'Home' %}</a>{% if title %} › {{ title|escape }}{% endif %}</div>{% endblock %}
 | |
|     {% endif %}
 | |
| 
 | |
|         {% if messages %}
 | |
|         <ul class="messagelist">{% for message in messages %}<li>{{ message|escape }}</li>{% endfor %}</ul>
 | |
|         {% endif %}
 | |
| 
 | |
|     <!-- Content -->
 | |
|     <div id="content" class="{% block coltype %}colM{% endblock %}">
 | |
|         {% block pretitle %}{% endblock %}
 | |
|         {% block content_title %}{% if title %}<h1>{{ title|escape }}</h1>{% endif %}{% endblock %}
 | |
|         {% block content %}
 | |
|         {% block object-tools %}{% endblock %}
 | |
|         {{ content }}
 | |
|         {% endblock %}
 | |
|         {% block sidebar %}{% endblock %}
 | |
|         <br class="clear" />
 | |
|     </div>
 | |
|     <!-- END Content -->
 | |
| 
 | |
|     {% block footer %}<div id="footer"></div>{% endblock %}
 | |
| </div>
 | |
| <!-- END Container -->
 | |
| 
 | |
| </body>
 | |
| </html>
 |