You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
758 B
HTML
27 lines
758 B
HTML
{% extends "admin/base_site.html" %}
|
|
{% load static i18n %}
|
|
|
|
{# Setup favicon #}
|
|
{% block extrahead %}<link rel="shortcut icon" type="image/png" href="{% static 'admin/img/favicon.png' %}"/>{% endblock %}
|
|
|
|
{# Setup browser tab label #}
|
|
{% block title %}{{ title }} | KOMPASS {% endblock %}
|
|
|
|
{# Setup branding #}
|
|
{% block branding %}
|
|
<h1 id="site-name">
|
|
<a href="{% url 'admin:index' %}">
|
|
{# Your logo here #}
|
|
<img src="{% static 'admin/img/jdav_logo_transparent.png' %}" alt="KOMPASS" height="50%" width="50%">
|
|
<br><br>
|
|
</span> KOMPASS
|
|
</a>
|
|
</h1>
|
|
{% endblock %}
|
|
|
|
{% block welcome-msg %}
|
|
<strong>
|
|
{% firstof user.member.name user.get_username %}
|
|
</strong>
|
|
{% endblock %}
|