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

{% block title %}{{ title }} | Adminstration{% endblock %}

{% block branding %}
<h1 id="site-name">Administration</h1>
{% endblock %}

{% block nav-global %}
    {% if user.is_staff %}
    <style type="text/css">
        .ml {margin:0 10px 10px;display:block;float:left}
    </style>

    <a href="/" clas="ml">Home</a>  
    <a href="/admin/" class="ml">Administration home</a>
    <a href="/admin/auth/user/?is_active__exact=0" class="ml">New Users</a>
    <a href="/admin/auth/user/" class="ml">All Users</a>
    {% endif %}
{% endblock %}