I want to add css in django-dashing for override all widget.
I tried follow this doc https://django-dashing.readthedocs.io/en/latest/getting-started.html#template-file
But I don't understand :
"Also make sure the app which hosts the dashing/dashboard.html template is listed before dashing in INSTALLED_APPS, since you are overriding the default template."
=> I don't have a "hosts", i have just css file...
I create files :
- dashing/dashboard.html
- dashing/css/global.css
And I fill dashboard.html :
{% extends 'dashing/base.html' %}
{% load staticfiles %}
{% block stylesheets %}
<link rel="stylesheet" href="{% static 'css/global.css' %}">
{% endblock %}
EDIT And I add my "host" in INSTALLED_APPS (settings.py)
INSTALLED_APPS = (
'django_dashing', # here
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'dashing',
)```