Django 2.2
authorRadek Czajka <rczajka@rczajka.pl>
Mon, 12 Aug 2019 13:51:34 +0000 (15:51 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Mon, 12 Aug 2019 13:51:34 +0000 (15:51 +0200)
14 files changed:
requirements/requirements.txt
src/catalogue/templates/catalogue/player.html
src/catalogue/templates/catalogue/snippets/license_icon.html
src/catalogue/templates/catalogue/viewer_base.html
src/catalogue/tests/test_book_import.py
src/club/templates/club/payment/paypal.html
src/club/templates/club/payment/payu-re.html
src/club/templates/club/payment/payu.html
src/paypal/templates/paypal/form.html
src/picture/templates/picture/picture_viewer.html
src/waiter/templates/waiter/wait.html
src/wolnelektury/settings/apps.py
src/wolnelektury/settings/basic.py
src/wolnelektury/templates/socialaccount/snippets/provider_list.html

index 97ed035..b3fc758 100644 (file)
@@ -1,7 +1,7 @@
 -i https://py.mdrn.pl/simple/
 
 # django
-Django==2.1.11
+Django==2.2.4
 fnpdjango==0.4
 
 #django-pipeline==1.6.13
index 8412a3a..2a48500 100755 (executable)
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 <html>
-  {% load static from staticfiles %}
+  {% load static from static %}
   {% load i18n pipeline %}
   {% load catalogue_tags %}
   {% load thumbnail %}
index 0dbdad3..c9e212e 100755 (executable)
@@ -1,5 +1,5 @@
 {% load i18n %}
-{% load static from staticfiles %}
+{% load static from static %}
 
 {% if license_url %}
 <a class="license-icon" href="{{ license_url }}"
index cdee8d8..a975d67 100644 (file)
@@ -1,6 +1,6 @@
 <!DOCTYPE html>
 {% load i18n %}
-{% load static from staticfiles %}
+{% load static from static %}
 {% load pipeline %}
 {% load piwik_tags %}
 <html class="no-js">
index d369924..9ad22a4 100644 (file)
@@ -39,7 +39,7 @@ class BookImportLogicTests(WLTestCase):
 
         self.assertEqual(book.title, "Default Book")
         self.assertEqual(book.slug, "default-book")
-        self.assert_(book.parent is None)
+        self.assertTrue(book.parent is None)
         self.assertFalse(book.has_html_file())
 
         # no fragments generated
@@ -85,7 +85,7 @@ class BookImportLogicTests(WLTestCase):
         self.assertEqual(book.fragments.count(), 1)
         self.assertEqual(book.fragments.all()[0].text, '<p class="paragraph">Ala ma kota</p>\n')
 
-        self.assert_(('theme', 'love') in [(tag.category, tag.slug) for tag in book.fragments.all()[0].tags])
+        self.assertTrue(('theme', 'love') in [(tag.category, tag.slug) for tag in book.fragments.all()[0].tags])
 
     def test_book_with_empty_theme(self):
         """ empty themes should be ignored """
@@ -97,7 +97,7 @@ class BookImportLogicTests(WLTestCase):
         """
 
         book = models.Book.from_text_and_meta(ContentFile(book_text), self.book_info)
-        self.assert_([('theme', 'love')],
+        self.assertTrue([('theme', 'love')],
                      book.fragments.all()[0].tags.filter(category='theme').values_list('category', 'slug'))
 
     def test_book_with_no_theme(self):
index befd9f2..81c7504 100644 (file)
@@ -1,3 +1,3 @@
-{% load staticfiles %}
+{% load static %}
 <img src="{% static 'club/paypal.png' %}">
 
index a1bc573..8f90d53 100644 (file)
@@ -1,4 +1,4 @@
-{% load staticfiles %}
+{% load static %}
 <img src="{% static 'club/payu/payu.png' %}">
 <img src="{% static 'club/visa-100.png' %}">
 <img src="{% static 'club/mastercard.png' %}">
index 60e6b6d..4a3c798 100644 (file)
@@ -1,4 +1,4 @@
-{% load staticfiles %}
+{% load static %}
 <img src="{% static 'club/payu/payu.png' %}">
 <img src="{% static 'club/payu/blik.png' %}">
 <img src="{% static 'club/visa-100.png' %}">
index 9f4c76b..92a755a 100644 (file)
@@ -1,7 +1,7 @@
 {% extends "base/base.html" %}
 {% load i18n %}
 {% load chunks %}
-{% load static from staticfiles %}
+{% load static from static %}
 
 {% block title %}{% trans "Wolne Lektury Friend Club" %}{% endblock %}
 
@@ -22,4 +22,4 @@
   {% endif %}
   {% chunk "klub_info" %}
   </div>
-{% endblock %}
\ No newline at end of file
+{% endblock %}
index 6c35fe0..3bd27b6 100644 (file)
@@ -1,6 +1,6 @@
 {% extends "catalogue/viewer_base.html" %}
 {% load i18n %}
-{% load static from staticfiles %}
+{% load static from static %}
 {% load catalogue_tags %}
 {% load thumbnail %}
 
index 0a0fb0d..22f5af8 100644 (file)
@@ -1,6 +1,6 @@
 {% extends "base/base.html" %}
 {% load i18n %}
-{% load static from staticfiles %}
+{% load static from static %}
 
 {% block titleextra %}
   {% if file_url %}
index 320f6dd..7797d3a 100644 (file)
@@ -41,6 +41,7 @@ INSTALLED_APPS_CONTRIB = [
     # external
     'django.contrib.auth',
     'django.contrib.contenttypes',
+    'django.contrib.messages',
     'django.contrib.sessions',
     'django.contrib.sites',
     'django.contrib.admin',
index c6485d6..294ee45 100644 (file)
@@ -55,6 +55,7 @@ TEMPLATES = [{
         ),
         'context_processors': (
             'django.contrib.auth.context_processors.auth',
+            'django.contrib.messages.context_processors.messages',
             'django.template.context_processors.debug',
             'django.template.context_processors.i18n',
             'django.template.context_processors.media',
index 3f467b1..61b3902 100644 (file)
@@ -1,5 +1,6 @@
 {% load socialaccount %}
-{% load static from staticfiles %}
+
+{% load static from static %}
 
 {% get_providers as providers %}
 {% for provider in providers %}