Projects have an icon identical to one of the media they contain, if this icon is different from the default icon. Icons can be set using ./manage.py setprojecticon once icons have been added to contents.
{% 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 %}