Create change_logo_dashboard.rst

pull/779/head
Gilson Filho 2014-11-03 11:13:43 -02:00
rodzic f379634eb7
commit ccf0f15227
1 zmienionych plików z 24 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,24 @@
Change Logo in Dashboard
========================
In your projects with Wagtail, maybe need switch the default logo to other image. For this, you need override the block ``logo_admin``.
{% extends "wagtailadmin/base.html" %}
{% block admin_logo %}
<img src="{{ STATIC_URL }}images/custom-logo.svg" alt="Custom Project" width="80" />
{% endblock %}
Save this in your app, for example, ``dashboard`` to ``dashboard/templates/wagtailadmin/base.html`` and register before ``wagtailadmin``::
INSTALLED_APPS = (
# ...
'dashboard',
'wagtail.wagtailcore',
'wagtail.wagtailadmin',
# ...
)