This commit is contained in:
Ariel Rin 2020-10-01 18:59:14 +10:00
commit 78b5953bdf
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{% load i18n %}
<a href="{% url 'nightmode' %}?next={{ request.path|urlencode }}">
{% trans "Night" %}
<i class="fa {% if NIGHT_MODE %}fa-toggle-on{% else %}fa-toggle-off{% endif %}" aria-hidden="true"></i>
<i class="fas {% if NIGHT_MODE %}fa-toggle-on{% else %}fa-toggle-off{% endif %}" aria-hidden="true"></i>
</a>

View File

@ -26,7 +26,7 @@ install_requires = [
'django-bootstrap-form',
'django-registration>=3.1',
'django-sortedm2m',
'django-redis-cache>=2.1.0,<3.0.0',
'django-redis-cache>=2.1.0,<3.0.0,!=2.1.3', # 2.1.3 != Django 3 (Issue 1264)
'django-celery-beat>=2.0.0',
'openfire-restapi',