wagtail-cjkcms 24.6.3__py2.py3-none-any.whl → 24.6.5__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
cjkcms/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
- VERSION = (24, 6, 3, "")
1
+ VERSION = (24, 6, 5, "")
2
2
 
3
3
  __version_info__ = VERSION
4
4
  __version__ = ".".join(map(str, VERSION[:3])) + (f"-{VERSION[3]}" if VERSION[3] else "")
cjkcms/settings.py CHANGED
@@ -155,18 +155,18 @@ class _DefaultSettings:
155
155
  "https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.bundle.min.js",
156
156
  ],
157
157
  "mdb": [
158
- "https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/7.3.0/mdb.min.css",
159
- "https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/7.3.0/mdb.umd.min.js",
158
+ "https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/7.3.2/mdb.min.css",
159
+ "https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/7.3.2/mdb.umd.min.js",
160
160
  ],
161
161
  # "mdb.dark": [
162
162
  # "https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/7.2.0/mdb.dark.min.css",
163
163
  # "https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/7.2.0/mdb.umd.min.js",
164
164
  # ],
165
- "mdb.light": [ # 7.3.0
165
+ "mdb.light": [ # 7.3.2
166
166
  "vendor/mdb/css/mdb.min.css",
167
167
  "vendor/mdb/js/mdb.umd.min.js",
168
168
  ],
169
- "mdb.dark": [ # 7.3.0
169
+ "mdb.dark": [ # 7.3.2
170
170
  "vendor/mdb/css/mdb.dark.min.css",
171
171
  "vendor/mdb/js/mdb.umd.min.js",
172
172
  ],
cjkcms/templates/404.html CHANGED
@@ -1,94 +1,56 @@
1
1
  {% extends "cjkcms/pages/web_page_notitle.html" %}
2
2
 
3
3
  {% block custom_assets %}
4
- <style>
5
- body {
6
- background-color: #FFFFFF;
7
- }
8
- svg {
9
- position: absolute;
10
- top: 50%;
11
- left: 50%;
12
- margin-top: -250px;
13
- margin-left: -400px;
14
- }
15
- .message-box {
16
- height: 200px;
17
- width: 380px;
18
- position: absolute;
19
- top: 50%;
20
- left: 50%;
21
- margin-top: -100px;
22
- margin-left: 50px;
23
- color: #333;
24
- font-family: Roboto;
25
- font-weight: 300;
26
- }
27
- .message-box h1 {
28
- font-size: 60px;
29
- line-height: 46px;
30
- margin-bottom: 40px;
31
- }
32
- .buttons-con .action-link-wrap {
33
- margin-top: 40px;
34
- }
35
- .buttons-con .action-link-wrap a {
36
- background: #68c950;
37
- padding: 8px 25px;
38
- border-radius: 4px;
39
- color: #333;
40
- font-weight: bold;
41
- font-size: 14px;
42
- transition: all 0.3s linear;
43
- cursor: pointer;
44
- text-decoration: none;
45
- margin-right: 10px
46
- }
47
- .buttons-con .action-link-wrap a:hover {
48
- background: #5A5C6C;
49
- color: #333;
50
- }
51
-
52
- #Polygon-1 , #Polygon-2 , #Polygon-3 , #Polygon-4 , #Polygon-4, #Polygon-5 {
53
- animation: float 1s infinite ease-in-out alternate;
54
- }
55
- #Polygon-2 {
56
- animation-delay: .2s;
57
- }
58
- #Polygon-3 {
59
- animation-delay: .4s;
60
- }
61
- #Polygon-4 {
62
- animation-delay: .6s;
63
- }
64
- #Polygon-5 {
65
- animation-delay: .8s;
66
- }
67
-
68
- @keyframes float {
69
- 100% {
70
- transform: translateY(20px);
71
- }
72
- }
73
- @media (max-width: 450px) {
74
- svg {
75
- position: absolute;
76
- top: 50%;
77
- left: 50%;
78
- margin-top: -250px;
79
- margin-left: -190px;
80
- width: 190px;
81
- height: 250px;
82
- }
83
- .message-box {
84
- top: 50%;
85
- left: 50%;
86
- margin-top: -100px;
87
- margin-left: -190px;
88
- text-align: center;
89
- }
90
- }
91
- </style>
4
+ <style>
5
+ body {
6
+ background-color: #FFFFFF;
7
+ }
8
+ .message-box h1 {
9
+ font-size: 60px;
10
+ line-height: 46px;
11
+ margin-bottom: 40px;
12
+ }
13
+ .buttons-con .action-link-wrap {
14
+ margin-top: 40px;
15
+ }
16
+ .buttons-con .action-link-wrap a {
17
+ background: #68c950;
18
+ padding: 8px 25px;
19
+ border-radius: 4px;
20
+ color: #333;
21
+ font-weight: bold;
22
+ font-size: 14px;
23
+ transition: all 0.3s linear;
24
+ cursor: pointer;
25
+ text-decoration: none;
26
+ margin-right: 10px
27
+ }
28
+ .buttons-con .action-link-wrap a:hover {
29
+ background: #5A5C6C;
30
+ color: #333;
31
+ }
32
+ #Polygon-1 , #Polygon-2 , #Polygon-3 , #Polygon-4 , #Polygon-4, #Polygon-5 {
33
+ animation: float 1s infinite ease-in-out alternate;
34
+ }
35
+ #Polygon-2 {
36
+ animation-delay: .2s;
37
+ }
38
+ #Polygon-3 {
39
+ animation-delay: .4s;
40
+ }
41
+ #Polygon-4 {
42
+ animation-delay: .6s;
43
+ }
44
+ #Polygon-5 {
45
+ animation-delay: .8s;
46
+ }
47
+ @keyframes float {
48
+ 100% {
49
+ transform: translateY(20px);
50
+ }
51
+ }
52
+
53
+ </style>
92
54
  {% endblock %}
93
55
 
94
56
  {% block title %}Page not found{% endblock %}
@@ -96,22 +58,28 @@
96
58
  {% block body_class %}404{% endblock %}
97
59
 
98
60
  {% block content_body %}
99
- <svg width="380px" height="500px" viewBox="0 0 837 1045" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
100
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
101
- <path d="M353,9 L626.664028,170 L626.664028,487 L353,642 L79.3359724,487 L79.3359724,170 L353,9 Z" id="Polygon-1" stroke="#007FB2" stroke-width="6" sketch:type="MSShapeGroup"></path>
102
- <path d="M78.5,529 L147,569.186414 L147,648.311216 L78.5,687 L10,648.311216 L10,569.186414 L78.5,529 Z" id="Polygon-2" stroke="#EF4A5B" stroke-width="6" sketch:type="MSShapeGroup"></path>
103
- <path d="M773,186 L827,217.538705 L827,279.636651 L773,310 L719,279.636651 L719,217.538705 L773,186 Z" id="Polygon-3" stroke="#795D9C" stroke-width="6" sketch:type="MSShapeGroup"></path>
104
- <path d="M639,529 L773,607.846761 L773,763.091627 L639,839 L505,763.091627 L505,607.846761 L639,529 Z" id="Polygon-4" stroke="#F2773F" stroke-width="6" sketch:type="MSShapeGroup"></path>
105
- <path d="M281,801 L383,861.025276 L383,979.21169 L281,1037 L179,979.21169 L179,861.025276 L281,801 Z" id="Polygon-5" stroke="#36B455" stroke-width="6" sketch:type="MSShapeGroup"></path>
106
- </g>
107
- </svg>
108
- <div class="message-box">
109
- <h1>404</h1>
110
- <p>Page not found</p>
111
- <div class="buttons-con">
112
- <div class="action-link-wrap">
113
- <a onclick="history.back(-1)" class="link-button link-back-button">Go Back</a>
114
- <a href="/" class="link-button">Go to Home Page</a>
61
+ <div class="container d-flex justify-content-center align-items-center">
62
+ <div class="row">
63
+ <div class="col-md-6 d-flex justify-content-center">
64
+ <svg width="380px" height="500px" viewBox="0 0 837 1045" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
65
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
66
+ <path d="M353,9 L626.664028,170 L626.664028,487 L353,642 L79.3359724,487 L79.3359724,170 L353,9 Z" id="Polygon-1" stroke="#007FB2" stroke-width="6" sketch:type="MSShapeGroup"></path>
67
+ <path d="M78.5,529 L147,569.186414 L147,648.311216 L78.5,687 L10,648.311216 L10,569.186414 L78.5,529 Z" id="Polygon-2" stroke="#EF4A5B" stroke-width="6" sketch:type="MSShapeGroup"></path>
68
+ <path d="M773,186 L827,217.538705 L827,279.636651 L773,310 L719,279.636651 L719,217.538705 L773,186 Z" id="Polygon-3" stroke="#795D9C" stroke-width="6" sketch:type="MSShapeGroup"></path>
69
+ <path d="M639,529 L773,607.846761 L773,763.091627 L639,839 L505,763.091627 L505,607.846761 L639,529 Z" id="Polygon-4" stroke="#F2773F" stroke-width="6" sketch:type="MSShapeGroup"></path>
70
+ <path d="M281,801 L383,861.025276 L383,979.21169 L281,1037 L179,979.21169 L179,861.025276 L281,801 Z" id="Polygon-5" stroke="#36B455" stroke-width="6" sketch:type="MSShapeGroup"></path>
71
+ </g>
72
+ </svg>
73
+ </div>
74
+ <div class="col-md-6 d-flex flex-column justify-content-center align-items-start">
75
+ <h1>404</h1>
76
+ <p>Page not found</p>
77
+ <div class="buttons-con">
78
+ <div class="action-link-wrap">
79
+ <a onclick="history.back(-1)" class="link-button link-back-button">Go Back</a>
80
+ <a href="/" class="link-button">Go to Home Page</a>
81
+ </div>
82
+ </div>
115
83
  </div>
116
84
  </div>
117
85
  </div>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wagtail-cjkcms
3
- Version: 24.6.3
3
+ Version: 24.6.5
4
4
  Summary: Wagtail Content Management System, installable as a Django app into any Wagtail 4.1.x/5.x/6.x site.
5
5
  Author-email: Grzegorz Krol <gk@cjk.pl>
6
6
  License: BSD-3-Clause
@@ -1,10 +1,10 @@
1
- cjkcms/__init__.py,sha256=Vss7UXUjyVs7zSaR-sUKrh2hyzF0cKoZbqJWug9v7vc,272
1
+ cjkcms/__init__.py,sha256=eKNQK4Iu3BBjUyGXrnlivBmN8ssYC3pnwnmwNbYCanY,272
2
2
  cjkcms/apps.py,sha256=VA5Z1YerImetvN8KsjPTMSn1fSo6O1JkBJdK5y5ubJY,173
3
3
  cjkcms/fields.py,sha256=dE0DuNIjX7jhA-5GjSmR2l66EDH2kq3vuxL9WyRALCY,3191
4
4
  cjkcms/forms.py,sha256=_uu_FR8odz40lD-Rmw0tlK7-xxxa8THHfV2-1ZJYsIM,361
5
5
  cjkcms/image_formats.py,sha256=d4zRshuybwxSRL8UpBH31dFBr32o4HNexa0ks5PX3TI,1833
6
6
  cjkcms/search_urls.py,sha256=92XkGTJRrQQyA061wWl1l5C0vq6INVJPXOrpcgp3aoU,125
7
- cjkcms/settings.py,sha256=2ZccptqyIk8nTkz23K7Fs9i1KFI2EOujxZA93xNSBSo,20324
7
+ cjkcms/settings.py,sha256=ODBpl3Fn3yCX0CYogt0OIGD-2IGaijefwpdZngx3Bnc,20324
8
8
  cjkcms/urls.py,sha256=k5tEHWI4Umi2PWvGdNJ-FZ9OCy6AS3Y2S7k5jNOpgt0,644
9
9
  cjkcms/utils.py,sha256=u4pkPxAwqH3SgyIcmvk7I5L3w-eIcz0Rphmv0Y1DRpA,2006
10
10
  cjkcms/views.py,sha256=29kegEdmwfKUmz84Cr8VbvfAVAN3PH2UIWQhNb5QP4U,4105
@@ -170,7 +170,7 @@ cjkcms/static/vendor/mdb/css/mdb.min.css,sha256=NwSiVkXzh8wtWxshP59CXHGRsNaM03bm
170
170
  cjkcms/static/vendor/mdb/css/mdb.min.css.map,sha256=HCd-vGDs-t7EinsTSmawI-CdC92HmydrH0TqlB4Oh4s,546228
171
171
  cjkcms/static/vendor/mdb/js/mdb.umd.min.js,sha256=6ExxHAv6V4GggQXwu1gkXc4MHtdiqKgVwBQ2m1HGr2M,124534
172
172
  cjkcms/static/vendor/mdb/js/mdb.umd.min.js.map,sha256=1k9rRQNB3hrVj47Anhg19MtXioMnuffFMh34NEyrBcY,502496
173
- cjkcms/templates/404.html,sha256=6MyoIWkoqT4BGg1scNhVmLiD-MO1bnmmmn_KuM2hnuk,4176
173
+ cjkcms/templates/404.html,sha256=GnIFZoXMcFzz_UTMChOgbO6-IIWQZKaAom7OJXn6dao,3245
174
174
  cjkcms/templates/500.html,sha256=YWYel2g2SDKLwSv8C9VLPzVvkcRLo6X9WYwWjxnfz0U,4802
175
175
  cjkcms/templates/cjkcms/robots.txt,sha256=TuxRK7bsNJqXJsYlE13cpQmh78YhDGs6m-l6RYt_XDM,122
176
176
  cjkcms/templates/cjkcms/blocks/accordion_block.html,sha256=9gsMZMflXqdYcFVqf8YOsyb3YYHgC26Sug_tzGvc6N8,1443
@@ -327,9 +327,9 @@ cjkcms/tests/testapp/models.py,sha256=Rkn9KHrGbLzrKjP4y_gwtXma1_fJOZNU7ekb689fJE
327
327
  cjkcms/tests/testapp/migrations/0001_initial.py,sha256=hxr-r-42IQEGr_OsZkxXXCW7wbxAHuI_OLOkn-seJUU,4942
328
328
  cjkcms/tests/testapp/migrations/0002_create_homepage.py,sha256=EfsxHh1oyqwahW9RVpTvaRDx_CHtFSJQahKEr7XC5Gg,1999
329
329
  cjkcms/tests/testapp/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
- wagtail_cjkcms-24.6.3.dist-info/LICENSE,sha256=KHsCh1fKOZzvcKe1a9h3FlDjTjK_UurO3wHK55TnHHo,1538
331
- wagtail_cjkcms-24.6.3.dist-info/METADATA,sha256=cKQq3CqbnFPfZVYQPIwoDZW8kZ7Dp-7q7k4c1iAQ528,3108
332
- wagtail_cjkcms-24.6.3.dist-info/WHEEL,sha256=_4XEmVmaBFWtekSGrbfOGNjC2I5lUr0lZSRblBllIFA,109
333
- wagtail_cjkcms-24.6.3.dist-info/entry_points.txt,sha256=FzoiFENdZ1uebNztyz6GlswkumQspd5VjWbR9MUIH_8,50
334
- wagtail_cjkcms-24.6.3.dist-info/top_level.txt,sha256=8wJGOGo1pG5nO5akfcMzA7i3ndj5868I8w35vTT0JJM,7
335
- wagtail_cjkcms-24.6.3.dist-info/RECORD,,
330
+ wagtail_cjkcms-24.6.5.dist-info/LICENSE,sha256=KHsCh1fKOZzvcKe1a9h3FlDjTjK_UurO3wHK55TnHHo,1538
331
+ wagtail_cjkcms-24.6.5.dist-info/METADATA,sha256=Ygl-d9CHZqgab-pJ4Kja3LnJURQPn3T3mlPrm0TfCHM,3108
332
+ wagtail_cjkcms-24.6.5.dist-info/WHEEL,sha256=_4XEmVmaBFWtekSGrbfOGNjC2I5lUr0lZSRblBllIFA,109
333
+ wagtail_cjkcms-24.6.5.dist-info/entry_points.txt,sha256=FzoiFENdZ1uebNztyz6GlswkumQspd5VjWbR9MUIH_8,50
334
+ wagtail_cjkcms-24.6.5.dist-info/top_level.txt,sha256=8wJGOGo1pG5nO5akfcMzA7i3ndj5868I8w35vTT0JJM,7
335
+ wagtail_cjkcms-24.6.5.dist-info/RECORD,,