server/src/remieplt/templates/admin/base_site.html
author durandn
Fri, 28 Aug 2015 16:00:19 +0200
changeset 82 bf1c38268e25
parent 3 fc0f3e398166
permissions -rw-r--r--
Updated Readmes + Updated tmp CAS config + Updated Laravel test with iframe + remove X-Frame django middleware from middlewares + removed local ssl certificate from repo

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