9 lines
326 B
HTML
9 lines
326 B
HTML
{% extends "admin/base_site.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}{% if subtitle %}{{ subtitle }} | {% endif %}{{ title }} - {{ site_title|default:_('Django site admin') }}{% endblock %}
|
|
|
|
{% block extrahead %}
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'img/fet_logo_white.png' %}"/>
|
|
{% endblock %}
|