server/src/remieplt/templates/admin/base_site.html
author durandn
Mon, 07 Sep 2015 17:39:52 +0200
changeset 96 b3cb1d4f07aa
parent 3 fc0f3e398166
permissions -rw-r--r--
Updated Markers Widget to allow Markers to be deleted + reworked the widget code to make it slightly more readable + updated iframe for markers to allow markers to be submitted per-user

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