20👍
✅
You need to add
django.contrib.staticfiles
to INSTALLED_APPS
51👍
If you’re running Django 3 and were on an older version before, you need to replace:
{% load static from staticfiles %}
or {% load staticfiles %}
with just:
{% load static %}
👤Sam
- [Django]-The QuerySet value for an exact lookup must be limited to one result using slicing. Filter error
- [Django]-Timestamp fields in django
- [Django]-Check if celery beat is up and running
Source:stackexchange.com