Skip to content

Instantly share code, notes, and snippets.

@richellyitalo
Last active January 29, 2019 00:14
Show Gist options
  • Save richellyitalo/41a7f41101ef57ba71c02d5df035a19c to your computer and use it in GitHub Desktop.
Save richellyitalo/41a7f41101ef57ba71c02d5df035a19c to your computer and use it in GitHub Desktop.
Sobrescrevendo áreas padrão do template admin do Django.

templates/admin/base_site.html

{% extends 'admin/base.html' %}
{%load static %}

{% block branding %}
<h1 id="head"><img src="{% static 'img/logo.png' %}"/></h1>
{% endblock %}

{% block extrastyle %}
  <link rel="stylesheet" href="{% static 'css/admin.css' %}"/>
{% endblock %}

{APP_PRINCIPAL}/static/css/admin.css

#head {
  height: 50px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment