web/ldtplatform/templates/admin/base_site.html
author grandjoncl
Fri, 19 Oct 2012 14:49:02 +0200
changeset 868 2ade832d1462
parent 183 89334901b7c2
permissions -rw-r--r--
Merge with 429ab4f4b82347c3ba4ca0ac36d854ac1715a190

{% 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 %}