Skip to content
Snippets Groups Projects
Commit c1ddf6ad authored by Nils Steinger's avatar Nils Steinger
Browse files

Apply dev-mode style in Django admin area

parent 8425e318
No related branches found
No related tags found
No related merge requests found
Pipeline #9040 passed
{% extends "admin/base.html" %}
{# Django-provided default template: #}
{% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %}
{% block branding %}
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1>
{% endblock %}
{% block nav-global %}{% endblock %}
{# Local additions: #}
{% load static %}
{% block extrastyle %}
{% if debug %}
<link rel="stylesheet" href="{% static 'common/css/dev.css' %}">
{% endif %}
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment