web/ldtplatform/templates/admin/base_site.html
author grandjoncl
Wed, 10 Oct 2012 17:55:18 +0200
changeset 839 e5b5e9d56eec
parent 183 89334901b7c2
permissions -rw-r--r--
Radio button to choose between div and iframe embed code. Embed code selected by default Iframe embed code generated in javascript in the embed_popup template

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