30 lines
777 B
HTML
30 lines
777 B
HTML
{% extends "admin/base.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
|
|
|
|
{% block branding %}
|
|
|
|
<h1 id="site-name">
|
|
<a href="{% url 'admin:index' %}" style="color: #0b1728;">
|
|
<img src="{% static 'cantorair.png' %}"
|
|
height="70px"
|
|
style="margin-right: 20px;"/>
|
|
</a>
|
|
</h1>
|
|
|
|
<div id="site-name" style="align-self: center; text-align: center;">
|
|
<a href="{% url 'admin:index' %}" style="color: #0b1728;">
|
|
{{ site_header | default:_('Django administration') }}
|
|
</a>
|
|
</div>
|
|
|
|
{% if user.is_anonymous %}
|
|
{% include "admin/color_theme_toggle.html" %}
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block nav-global %}{% endblock %}
|