web/ldtplatform/templates/admin/base_site.html
author verrierj
Fri, 30 Sep 2011 12:19:21 +0200
changeset 191 43509690a898
parent 183 89334901b7c2
permissions -rw-r--r--
Merge with 08e6b5dbfc933ea06390df55f948cf05b6d02584

{% extends "admin/base.html" %}
{% load i18n %}

{% block title %}{{ title }} | {% trans 'Django site admin' %}{% endblock %}

{% block branding %}
<h1 id="site-name">{% trans 'Django administration' %}</h1>
{% endblock %}

{% block nav-global %}
    <style type="text/css">
        .adminlink {
        	margin:0 10px 10px;
        	display:block;
        	float:left;
        }
    </style>
    
    <a href="{% url admin:index %}" class="adminlink">Admin home</a>  
    <a href="{% url root-view %}" class="adminlink">Website home</a>
{% endblock %}