wagtail-cjkcms 25.5.3__py2.py3-none-any.whl → 25.8.2__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 +1 -1
- cjkcms/blocks/__init__.py +4 -0
- cjkcms/blocks/content/multistep.py +0 -1
- cjkcms/blocks/content/steps.py +83 -0
- cjkcms/blocks/content_blocks.py +48 -0
- cjkcms/project_template/basic/requirements.txt +1 -1
- cjkcms/project_template/webpack/requirements.txt +1 -4
- cjkcms/templates/cjkcms/blocks/hero_block.html +7 -2
- cjkcms/templates/cjkcms/blocks/icon_text_block.html +38 -0
- cjkcms/templates/cjkcms/blocks/steps_block.html +130 -0
- {wagtail_cjkcms-25.5.3.dist-info → wagtail_cjkcms-25.8.2.dist-info}/METADATA +1 -1
- {wagtail_cjkcms-25.5.3.dist-info → wagtail_cjkcms-25.8.2.dist-info}/RECORD +18 -29
- {wagtail_cjkcms-25.5.3.dist-info → wagtail_cjkcms-25.8.2.dist-info}/WHEEL +1 -1
- cjkcms/tests/media/images/test_3ZB0HiN.original.png +0 -0
- cjkcms/tests/media/images/test_6mZL9NZ.original.png +0 -0
- cjkcms/tests/media/images/test_OSPIkp8.original.png +0 -0
- cjkcms/tests/media/images/test_YBCJmYS.original.png +0 -0
- cjkcms/tests/media/images/test_q0QJ4UA.original.png +0 -0
- cjkcms/tests/media/images/test_vMIUDCh.original.png +0 -0
- cjkcms/tests/media/images/test_wMRIuGx.original.png +0 -0
- cjkcms/tests/media/original_images/test.png +0 -0
- cjkcms/tests/media/original_images/test_6mZL9NZ.png +0 -0
- cjkcms/tests/media/original_images/test_OSPIkp8.png +0 -0
- cjkcms/tests/media/original_images/test_YBCJmYS.png +0 -0
- cjkcms/tests/media/original_images/test_q0QJ4UA.png +0 -0
- cjkcms/tests/media/original_images/test_vMIUDCh.png +0 -0
- cjkcms/tests/media/original_images/test_wMRIuGx.png +0 -0
- /cjkcms/{tests/media → media}/images/test.original.png +0 -0
- /cjkcms/{tests/media/original_images/test_3ZB0HiN.png → media/original_images/test.png} +0 -0
- {wagtail_cjkcms-25.5.3.dist-info → wagtail_cjkcms-25.8.2.dist-info}/entry_points.txt +0 -0
- {wagtail_cjkcms-25.5.3.dist-info → wagtail_cjkcms-25.8.2.dist-info}/licenses/LICENSE +0 -0
- {wagtail_cjkcms-25.5.3.dist-info → wagtail_cjkcms-25.8.2.dist-info}/top_level.txt +0 -0
cjkcms/__init__.py
CHANGED
cjkcms/blocks/__init__.py
CHANGED
@@ -32,10 +32,12 @@ from .content_blocks import ( # noqa
|
|
32
32
|
PriceListBlock,
|
33
33
|
ReusableContentBlock,
|
34
34
|
HighlightBlock,
|
35
|
+
IconWithTextBlock,
|
35
36
|
)
|
36
37
|
from .content.events import PublicEventBlock, EventCalendarBlock
|
37
38
|
from .content.countdown import CountdownBlock
|
38
39
|
from .content.multistep import MultiStepInstructionsBlock
|
40
|
+
from .content.steps import StepsBlock
|
39
41
|
from .layout_blocks import CardGridBlock, GridBlock, HeroBlock
|
40
42
|
from cjkcms.settings import cms_settings
|
41
43
|
|
@@ -79,6 +81,8 @@ CONTENT_STREAMBLOCKS = HTML_STREAMBLOCKS + [
|
|
79
81
|
("reusable_content", ReusableContentBlock()),
|
80
82
|
("event_calendar", EventCalendarBlock()),
|
81
83
|
("highlight", HighlightBlock()),
|
84
|
+
("icon_with_text", IconWithTextBlock()),
|
85
|
+
("steps", StepsBlock()),
|
82
86
|
("countdown", CountdownBlock()),
|
83
87
|
("multistep_instructions", MultiStepInstructionsBlock()),
|
84
88
|
]
|
@@ -3,7 +3,6 @@ from wagtail.blocks import StructBlock, StreamBlock
|
|
3
3
|
from cjkcms.blocks.html_blocks import ButtonBlock
|
4
4
|
from cjkcms.blocks.base_blocks import BaseBlock
|
5
5
|
from cjkcms.settings import cms_settings
|
6
|
-
from django.utils.translation import gettext_lazy as _
|
7
6
|
|
8
7
|
|
9
8
|
class BootstrapColorChoiceBlock(blocks.ChoiceBlock):
|
@@ -0,0 +1,83 @@
|
|
1
|
+
from django.utils.translation import gettext_lazy as _
|
2
|
+
from wagtail import blocks
|
3
|
+
|
4
|
+
from cjkcms.blocks.base_blocks import BaseBlock
|
5
|
+
|
6
|
+
|
7
|
+
class StepItemBlock(blocks.StructBlock):
|
8
|
+
"""A single step: icon and title (caption)."""
|
9
|
+
|
10
|
+
icon = blocks.CharBlock(required=True, label=_("Icon"))
|
11
|
+
title = blocks.CharBlock(required=True, max_length=255, label=_("Title"))
|
12
|
+
is_active = blocks.BooleanBlock(
|
13
|
+
required=False,
|
14
|
+
default=False,
|
15
|
+
label=_("Active"),
|
16
|
+
help_text=_("If active, the step will be highlighted."),
|
17
|
+
)
|
18
|
+
|
19
|
+
class Meta:
|
20
|
+
icon = "minus"
|
21
|
+
label = _("Step Item")
|
22
|
+
label_format = _("Step: {title}")
|
23
|
+
|
24
|
+
|
25
|
+
class StepsColorSettingsBlock(blocks.StructBlock):
|
26
|
+
"""
|
27
|
+
Color settings for the steps block.
|
28
|
+
"""
|
29
|
+
|
30
|
+
icon_color = blocks.CharBlock(
|
31
|
+
required=False,
|
32
|
+
max_length=255,
|
33
|
+
label=_("Icon color"),
|
34
|
+
)
|
35
|
+
icon_border_color = blocks.CharBlock(
|
36
|
+
required=False,
|
37
|
+
max_length=255,
|
38
|
+
label=_("Icon border color"),
|
39
|
+
)
|
40
|
+
icon_background_color = blocks.CharBlock(
|
41
|
+
required=False,
|
42
|
+
max_length=255,
|
43
|
+
label=_("Icon background color"),
|
44
|
+
)
|
45
|
+
|
46
|
+
active_icon_color = blocks.CharBlock(
|
47
|
+
required=False,
|
48
|
+
max_length=255,
|
49
|
+
label=_("Active icon color"),
|
50
|
+
)
|
51
|
+
active_icon_border_color = blocks.CharBlock(
|
52
|
+
required=False,
|
53
|
+
max_length=255,
|
54
|
+
label=_("Active icon border color"),
|
55
|
+
)
|
56
|
+
active_icon_background_color = blocks.CharBlock(
|
57
|
+
required=False,
|
58
|
+
max_length=255,
|
59
|
+
label=_("Active icon background color"),
|
60
|
+
)
|
61
|
+
|
62
|
+
line_color = blocks.CharBlock(
|
63
|
+
required=False,
|
64
|
+
max_length=255,
|
65
|
+
label=_("Connector line color"),
|
66
|
+
)
|
67
|
+
|
68
|
+
|
69
|
+
class StepsBlock(BaseBlock):
|
70
|
+
"""Horizontal steps with connecting line."""
|
71
|
+
|
72
|
+
items = blocks.ListBlock(StepItemBlock(), label=_("Steps"))
|
73
|
+
color_settings = StepsColorSettingsBlock(
|
74
|
+
required=False,
|
75
|
+
label=_("Color settings"),
|
76
|
+
help_text=_("Hex/RGBA/CSS color. Leave blank to use default styles."),
|
77
|
+
)
|
78
|
+
|
79
|
+
class Meta:
|
80
|
+
icon = "list-ol"
|
81
|
+
label = _("Steps")
|
82
|
+
label_format = _("Steps: {items}")
|
83
|
+
template = "cjkcms/blocks/steps_block.html"
|
cjkcms/blocks/content_blocks.py
CHANGED
@@ -396,3 +396,51 @@ class HighlightBlock(BaseBlock):
|
|
396
396
|
label = _("Highlight")
|
397
397
|
label_format = _("Highlight")
|
398
398
|
template = "cjkcms/blocks/highlight_block.html"
|
399
|
+
|
400
|
+
|
401
|
+
class IconWithTextBlock(BaseBlock):
|
402
|
+
"""Configurable block for an icon with optional statistic value, title and text.
|
403
|
+
|
404
|
+
Two layouts are supported:
|
405
|
+
- "stat": stacked, suitable for statistics (icon, big number, label/text)
|
406
|
+
- "media": icon on the left, content on the right (title, text)
|
407
|
+
"""
|
408
|
+
|
409
|
+
icon = blocks.CharBlock(
|
410
|
+
required=True,
|
411
|
+
label=_("Icon"),
|
412
|
+
)
|
413
|
+
title = blocks.CharBlock(
|
414
|
+
required=False,
|
415
|
+
max_length=255,
|
416
|
+
label=_("Title"),
|
417
|
+
)
|
418
|
+
text = blocks.CharBlock(
|
419
|
+
required=False,
|
420
|
+
max_length=255,
|
421
|
+
label=_("Text"),
|
422
|
+
)
|
423
|
+
icon_color = blocks.CharBlock(
|
424
|
+
required=False,
|
425
|
+
max_length=255,
|
426
|
+
label=_("Icon color"),
|
427
|
+
help_text=_("Hex/RGBA/CSS color. Leave blank to use default styles."),
|
428
|
+
)
|
429
|
+
icon_background_color = blocks.CharBlock(
|
430
|
+
required=False,
|
431
|
+
max_length=255,
|
432
|
+
label=_("Icon background color"),
|
433
|
+
help_text=_("Hex/RGBA/CSS color. Leave blank to use default styles."),
|
434
|
+
)
|
435
|
+
layout = blocks.ChoiceBlock(
|
436
|
+
choices=[("horizontal", _("Horizontal")), ("vertical", _("Vertical"))],
|
437
|
+
default="horizontal",
|
438
|
+
required=False,
|
439
|
+
label=_("Layout"),
|
440
|
+
)
|
441
|
+
|
442
|
+
class Meta:
|
443
|
+
icon = "info-circle"
|
444
|
+
label = _("Icon with Text")
|
445
|
+
label_format = _("Icon with Text: {title}")
|
446
|
+
template = "cjkcms/blocks/icon_text_block.html"
|
@@ -5,10 +5,15 @@
|
|
5
5
|
{% endif %}
|
6
6
|
|
7
7
|
{% image self.background_image max-2000x2000 as background_image %}
|
8
|
-
<div class="hero-bg {% if self.is_parallax %}parallax{% endif %} {% if self.tile_image %}tile{% endif %} {{self.settings.custom_css_class}}"
|
8
|
+
<div class="hero-bg position-relative {% if self.is_parallax %}parallax{% endif %} {% if self.tile_image %}tile{% endif %} {{self.settings.custom_css_class}}"
|
9
9
|
style="{% if self.background_color %}background-color:{{self.background_color}};{% endif %}{% if background_image %}background-image:url({{background_image.url}});{% endif %}"
|
10
10
|
{% if self.settings.custom_id %}id="{{self.settings.custom_id}}"{% endif %}>
|
11
|
-
|
11
|
+
|
12
|
+
{% if self.background_color and background_image %}
|
13
|
+
<div class="position-absolute top-0 start-0 w-100 h-100" style="background-color: {{self.background_color}};" aria-hidden="true"></div>
|
14
|
+
{% endif %}
|
15
|
+
|
16
|
+
<div class="hero-fg position-relative" style="{% if self.foreground_color %}color:{{self.foreground_color}};{% endif %}">
|
12
17
|
{% include_block self.content %}
|
13
18
|
</div>
|
14
19
|
</div>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
{% load wagtailcore_tags %}
|
2
|
+
|
3
|
+
<style scoped>
|
4
|
+
{% if self.icon_background_color %}
|
5
|
+
.icon-text-{{block.id}} .icon-bg {
|
6
|
+
background: {{ self.icon_background_color }} !important;
|
7
|
+
}
|
8
|
+
{% endif %}
|
9
|
+
{% if self.icon_color %}
|
10
|
+
.icon-text-{{block.id}} .icon-color {
|
11
|
+
color: {{ self.icon_color }} !important;
|
12
|
+
}
|
13
|
+
{% endif %}
|
14
|
+
</style>
|
15
|
+
|
16
|
+
{% if self.layout == "horizontal" %}
|
17
|
+
<div class="icon-text-{{block.id}} d-flex align-items-start gap-3 {{ self.settings.custom_css_class }}"
|
18
|
+
{% if self.settings.custom_id %}id="{{ self.settings.custom_id }}"{% endif %}
|
19
|
+
>
|
20
|
+
<div class="rounded d-inline-flex align-items-center justify-content-center p-3 icon-bg" style="aspect-ratio: 1/1;">
|
21
|
+
{% if self.icon %}<i class="{{ self.icon }} fs-1 fa-fw icon-color"></i>{% endif %}
|
22
|
+
</div>
|
23
|
+
{% if self.title %}<h3 class="fw-semibold fs-2 mb-0">{{ self.title }}</h3>{% endif %}
|
24
|
+
{% if self.text %}<p class="fs-5 fw-lighter mb-0">{{ self.text }}</p>{% endif %}
|
25
|
+
</div>
|
26
|
+
{% else %}
|
27
|
+
<div class="icon-text-{{block.id}} text-center {{ self.settings.custom_css_class }}"
|
28
|
+
{% if self.settings.custom_id %}id="{{ self.settings.custom_id }}"{% endif %}
|
29
|
+
>
|
30
|
+
<div class="mx-auto mb-2 rounded d-inline-flex align-items-center justify-content-center p-3 bg-primary icon-bg" style="aspect-ratio: 1/1;">
|
31
|
+
{% if self.icon %}<i class="{{ self.icon }} fs-1 fa-fw text-white icon-color"></i>{% endif %}
|
32
|
+
</div>
|
33
|
+
{% if self.title %}<h3 class="fs-3 fw-bold lh-1 mb-0">{{ self.title }}</h3>{% endif %}
|
34
|
+
{% if self.text %}<p class="fs-6 fw-lighter mb-0">{{ self.text }}</p>{% endif %}
|
35
|
+
</div>
|
36
|
+
{% endif %}
|
37
|
+
|
38
|
+
|
@@ -0,0 +1,130 @@
|
|
1
|
+
{% load wagtailcore_tags %}
|
2
|
+
|
3
|
+
<style>
|
4
|
+
.steps-container {
|
5
|
+
flex-direction: column;
|
6
|
+
width: fit-content;
|
7
|
+
}
|
8
|
+
|
9
|
+
.connecting-line {
|
10
|
+
width: 6px;
|
11
|
+
height: 50%;
|
12
|
+
background: {{ self.color_settings.line_color|default:'#F3F3F3' }};
|
13
|
+
}
|
14
|
+
|
15
|
+
.step-item {
|
16
|
+
display: flex;
|
17
|
+
}
|
18
|
+
|
19
|
+
.step-item-content {
|
20
|
+
display: flex;
|
21
|
+
flex-direction: column-reverse;
|
22
|
+
justify-content: center;
|
23
|
+
}
|
24
|
+
|
25
|
+
.connecting-line.before {
|
26
|
+
left: calc(50% - 3px);
|
27
|
+
top: 0;
|
28
|
+
}
|
29
|
+
|
30
|
+
@media (min-width: 768px) {
|
31
|
+
.steps-container {
|
32
|
+
flex-direction: row;
|
33
|
+
width: auto;
|
34
|
+
}
|
35
|
+
|
36
|
+
.connecting-line {
|
37
|
+
height: 6px;
|
38
|
+
top: calc(50% - 3px);
|
39
|
+
width: 50%;
|
40
|
+
}
|
41
|
+
|
42
|
+
.step-item {
|
43
|
+
flex-direction: column;
|
44
|
+
flex: 1;
|
45
|
+
}
|
46
|
+
|
47
|
+
.step-item-content {
|
48
|
+
text-align: center;
|
49
|
+
flex-direction: column;
|
50
|
+
}
|
51
|
+
|
52
|
+
.connecting-line.after {
|
53
|
+
left: 50%;
|
54
|
+
}
|
55
|
+
|
56
|
+
.connecting-line.before {
|
57
|
+
left: 0;
|
58
|
+
top: auto;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
/* Icon Color Settings */
|
63
|
+
{% if self.color_settings.icon_background_color %}
|
64
|
+
.steps-container-{{block.id}} .icon-bg:not(.active) {
|
65
|
+
background: {{ self.color_settings.icon_background_color }} !important;
|
66
|
+
}
|
67
|
+
{% endif %}
|
68
|
+
{% if self.color_settings.icon_border_color %}
|
69
|
+
.steps-container-{{block.id}} .icon-border:not(.active) {
|
70
|
+
border: 2px solid {{ self.color_settings.icon_border_color }} !important;
|
71
|
+
}
|
72
|
+
{% endif %}
|
73
|
+
{% if self.color_settings.icon_color %}
|
74
|
+
.steps-container-{{block.id}} .icon-color:not(.active) {
|
75
|
+
color: {{ self.color_settings.icon_color }} !important;
|
76
|
+
}
|
77
|
+
{% endif %}
|
78
|
+
/* Active Icon Color Settings */
|
79
|
+
{% if self.color_settings.active_icon_background_color %}
|
80
|
+
.steps-container-{{block.id}} .icon-bg.active {
|
81
|
+
background: {{ self.color_settings.active_icon_background_color }} !important;
|
82
|
+
}
|
83
|
+
{% endif %}
|
84
|
+
{% if self.color_settings.active_icon_border_color %}
|
85
|
+
.steps-container-{{block.id}} .icon-border.active {
|
86
|
+
border: 2px solid {{ self.color_settings.active_icon_border_color }} !important;
|
87
|
+
}
|
88
|
+
{% endif %}
|
89
|
+
{% if self.color_settings.active_icon_color %}
|
90
|
+
.steps-container-{{block.id}} .icon-color.active {
|
91
|
+
color: {{ self.color_settings.active_icon_color }} !important;
|
92
|
+
}
|
93
|
+
{% endif %}
|
94
|
+
</style>
|
95
|
+
|
96
|
+
<section class="position-relative fw-lighter {{ self.settings.custom_css_class }}" {% if self.settings.custom_id %}id="{{ self.settings.custom_id }}"{% endif %}>
|
97
|
+
|
98
|
+
<div class="container">
|
99
|
+
<ol class="steps-container-{{block.id}} d-flex ms-3 ms-lg-0 list-unstyled">
|
100
|
+
{% for item in self.items %}
|
101
|
+
<li class="step-item">
|
102
|
+
|
103
|
+
<div class="d-flex align-items-center justify-content-center position-relative">
|
104
|
+
{% if not forloop.first %}
|
105
|
+
<div class="connecting-line before position-absolute" aria-hidden="true"></div>
|
106
|
+
{% endif %}
|
107
|
+
{% if not forloop.last %}
|
108
|
+
<div class="connecting-line after d-none d-md-block position-absolute" aria-hidden="true"></div>
|
109
|
+
{% endif %}
|
110
|
+
<div class="rounded d-inline-flex align-items-center justify-content-center p-3 position-relative
|
111
|
+
{% if item.is_active %}active bg-primary text-white{% else %}bg-white text-primary{% endif %} border border-2 border-primary icon-bg icon-border icon-color
|
112
|
+
{% if not forloop.first %}mt-5 mt-md-0{% endif %}"
|
113
|
+
style="aspect-ratio: 1/1;"
|
114
|
+
>
|
115
|
+
<i class="{{ item.icon }} fs-1 fa-fw" aria-label="{{ item.title }}" role="img"></i>
|
116
|
+
</div>
|
117
|
+
</div>
|
118
|
+
|
119
|
+
<div class="step-item-content ms-3 ms-md-0 {% if not forloop.first %}mt-5 mt-md-0{% endif %}">
|
120
|
+
<div class="mt-md-2">Step {{ forloop.counter }}</div>
|
121
|
+
<p class="fs-5 mb-0">{{ item.title }}</p>
|
122
|
+
</div>
|
123
|
+
|
124
|
+
</li>
|
125
|
+
{% endfor %}
|
126
|
+
</ol>
|
127
|
+
</div>
|
128
|
+
</section>
|
129
|
+
|
130
|
+
|
@@ -1,4 +1,4 @@
|
|
1
|
-
cjkcms/__init__.py,sha256=
|
1
|
+
cjkcms/__init__.py,sha256=u54oQ-nRAX8bwmkmRHNN9Lhj9Kne3yNpyoKToEOZk2Y,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
|
@@ -13,16 +13,17 @@ cjkcms/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
cjkcms/api/mailchimp.py,sha256=pufnnu8n-c6kkWNKy-EsRLW5LLBn8_TmYrnRSQCPFdY,2832
|
14
14
|
cjkcms/bin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
15
15
|
cjkcms/bin/cjkcms.py,sha256=i11hhB11COQhTk05y7mkeIkUYcFjhI8-QxLkN3tCxgg,5763
|
16
|
-
cjkcms/blocks/__init__.py,sha256=
|
16
|
+
cjkcms/blocks/__init__.py,sha256=OAQ9w3BS-USUHB0qZrUuh_rL4dc7qVigvimta4Uwj9k,4425
|
17
17
|
cjkcms/blocks/base_blocks.py,sha256=wyTWluLvHmdxn3cBJhEiFciVDE4I2PWVqqPRCyWf8v0,12198
|
18
|
-
cjkcms/blocks/content_blocks.py,sha256
|
18
|
+
cjkcms/blocks/content_blocks.py,sha256=p4JJOtwos7UNMWnZ3C85MOqFBXWeHhpMZi2f1vHhBTE,11180
|
19
19
|
cjkcms/blocks/html_blocks.py,sha256=bDRDEresn3R87Uux7YztU2WhRnxGhJ429soOpmAd41c,9544
|
20
20
|
cjkcms/blocks/layout_blocks.py,sha256=n2oVyL-ZQQaEA00HU6YraR59YF065o-OK7WuAahGuiw,3406
|
21
21
|
cjkcms/blocks/searchable_html_block.py,sha256=i1rWv4vwwvZ9fxkASwPKl87-TqVHkXOFyohH3ve7pYk,171
|
22
22
|
cjkcms/blocks/content/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
23
|
cjkcms/blocks/content/countdown.py,sha256=KWutgbPY_N49vrxqUPjbir-MgN0ro5u8WVXD8MyJUbI,3342
|
24
24
|
cjkcms/blocks/content/events.py,sha256=H3uIl4Gxfsm8yjdfaEMRLcNs5-HkoMZUP1qkxPd5Z9Q,1967
|
25
|
-
cjkcms/blocks/content/multistep.py,sha256=
|
25
|
+
cjkcms/blocks/content/multistep.py,sha256=B74l16ScImngFO-gLSCEdCcqBSOhkmccWRSlH2NnTxw,2509
|
26
|
+
cjkcms/blocks/content/steps.py,sha256=zTr0A-9Ndjud9b8hvYCNaeKV0UUJ9hPQLnG1a3JP0No,2234
|
26
27
|
cjkcms/draftail/__init__.py,sha256=4-DXyDcnvAacmOzRW5IzmNb28kU71PJ18Q89vkxCv_8,240
|
27
28
|
cjkcms/draftail/draftail_extensions.py,sha256=Grf3vkuqyygt7vn3Fp1ALXLxjgSsYZ4-rLH4R8eFIEU,3250
|
28
29
|
cjkcms/finders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -33,6 +34,8 @@ cjkcms/management/commands/import-csv.py,sha256=5IR_GHVhuHdb0UX_TNLe4OuKhwRmKjU3
|
|
33
34
|
cjkcms/management/commands/init-collections.py,sha256=bTDVz3RyXUoCUXv-d2P3JWjySw0INvO_14IfNmPEG9A,951
|
34
35
|
cjkcms/management/commands/init-navbar.py,sha256=rO0O1MjzfvmnQoZllhY3g6KOHT3nFt5UR0WkIsb-4PA,3560
|
35
36
|
cjkcms/management/commands/init-website.py,sha256=DJPREmnv3srarhNWbiowluKAuUoa-PXDlENQQgnWZPY,3820
|
37
|
+
cjkcms/media/images/test.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
38
|
+
cjkcms/media/original_images/test.png,sha256=GvnFOJX4x2u1s4LjNld27VHvbaASC5OCHs4bAyLHq7Q,2307
|
36
39
|
cjkcms/migrations/0001_initial.py,sha256=hiDQKRqmKk65tS8jyXRRfffWLzLMB7P0r3qEqu88jAM,2070677
|
37
40
|
cjkcms/migrations/0002_alter_body_to_cjkcmsstreamfield.py,sha256=QYPXCirKSBBwB4JNcei_OhEx856Cq0_S-7ZXmEtcCAI,924
|
38
41
|
cjkcms/migrations/0003_alter_footer_content_alter_navbar_menu_items.py,sha256=N5vRtKBIlQ99zbBKTFoVAVeMH_K192c2dVVYOvHD4Nc,727
|
@@ -70,7 +73,7 @@ cjkcms/project_template/basic/.gitattributes,sha256=TXzwnsENJoG4wiS2LEREDeZ0JI_v
|
|
70
73
|
cjkcms/project_template/basic/.gitignore,sha256=EBotJhW2lEZ9u6nXwClkSq9rVawXsCh6h4u38g3lM_I,275
|
71
74
|
cjkcms/project_template/basic/README.md,sha256=KqbqIp8hHb6nW7PuQjjKL6QIsibNu3vzVLeZ-FKuOhI,792
|
72
75
|
cjkcms/project_template/basic/manage.py,sha256=a0-pofJxi3cyiildUPnerQr2NQUnJz3INLfdA5vAEBE,678
|
73
|
-
cjkcms/project_template/basic/requirements.txt,sha256=
|
76
|
+
cjkcms/project_template/basic/requirements.txt,sha256=_niVDLXUzrQWzHmzyjfZtkd5wdorW3dce-4-ymJBq6M,122
|
74
77
|
cjkcms/project_template/basic/home/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
75
78
|
cjkcms/project_template/basic/home/blocks/__init__.py,sha256=Qm1MDxNmnXaY1vVISlaZu0EaySahCfzq0hvmW7ilDig,429
|
76
79
|
cjkcms/project_template/basic/home/blocks/blocks.py,sha256=YWE15PKj71bnKvqQqEqK51rTawM2lUkZ25o79b6AsyE,2135
|
@@ -104,7 +107,7 @@ cjkcms/project_template/webpack/.stylelintrc.json,sha256=WSqk-65m2QsWmxjlo5Rjw9c
|
|
104
107
|
cjkcms/project_template/webpack/README.md,sha256=KqbqIp8hHb6nW7PuQjjKL6QIsibNu3vzVLeZ-FKuOhI,792
|
105
108
|
cjkcms/project_template/webpack/manage.py,sha256=a0-pofJxi3cyiildUPnerQr2NQUnJz3INLfdA5vAEBE,678
|
106
109
|
cjkcms/project_template/webpack/package.json,sha256=WInjGgudf_r75KZWUv37W2jAmUr1il7wd-cWI-zQZy8,1743
|
107
|
-
cjkcms/project_template/webpack/requirements.txt,sha256=
|
110
|
+
cjkcms/project_template/webpack/requirements.txt,sha256=4-28jApCIjnJ5gTgk2hBoTqlf_vQV1gNyQWHMqCLqRo,149
|
108
111
|
cjkcms/project_template/webpack/frontend/.gitignore,sha256=ad2hWl5aU0Wx1zqzTr1_U-BYjmSkUmv19Ty0tc7JKeE,131
|
109
112
|
cjkcms/project_template/webpack/frontend/README.md,sha256=oX1NBqOKh1gQ8SezR3_J7W1QLrnFqVmJNRNKw2vuueI,733
|
110
113
|
cjkcms/project_template/webpack/frontend/src/application/app.js,sha256=TMAJXtLoi8Wl7OeJfRa7zAMls1bojCxEIlEBghbPE6Y,577
|
@@ -215,8 +218,9 @@ cjkcms/templates/cjkcms/blocks/grid_block.html,sha256=umVOxoAW67zB3gBZu4Ko0RXNsK
|
|
215
218
|
cjkcms/templates/cjkcms/blocks/h1_block.html,sha256=1THQrcNJFICX63kgfOmbFBlg3bnGTVq6wBPRToFkx-Y,200
|
216
219
|
cjkcms/templates/cjkcms/blocks/h2_block.html,sha256=F2pyouvyTmHIvxx63fsCHTsOfGZSjrkDDd48bX559kg,200
|
217
220
|
cjkcms/templates/cjkcms/blocks/h3_block.html,sha256=9ywHXmVmKnSzyewDAN8_NN49YNNAH2TihGoBECT-IkA,200
|
218
|
-
cjkcms/templates/cjkcms/blocks/hero_block.html,sha256=
|
221
|
+
cjkcms/templates/cjkcms/blocks/hero_block.html,sha256=TJXffaO9kO7EnuLloSZc4u7H4x3yGAhywm9hTCg_AJw,1044
|
219
222
|
cjkcms/templates/cjkcms/blocks/highlight_block.html,sha256=_5yXnG1TUnOl7hq88V59dFMj5TMH1M5BHbxBUhUs6yc,786
|
223
|
+
cjkcms/templates/cjkcms/blocks/icon_text_block.html,sha256=45GBKjhR8vVb-Sue1TDVqTnvgMN44hY29q0q69x-l0w,1624
|
220
224
|
cjkcms/templates/cjkcms/blocks/image_block.html,sha256=A_jRCQDL0GT3NQzxhaGGalnvdnnh3Ly3vSed4AAN7x4,275
|
221
225
|
cjkcms/templates/cjkcms/blocks/image_gallery_block.html,sha256=gFAlNq07qY-6tzHi7gMPol6xBkx6mAvLXZcuNkb9q6w,1400
|
222
226
|
cjkcms/templates/cjkcms/blocks/image_link_block.html,sha256=1SnNXhvgorW3oIPOWuLeU9gUp4nGS2vBuPZKf6eM9TI,627
|
@@ -240,6 +244,7 @@ cjkcms/templates/cjkcms/blocks/quote_block_leftbar.html,sha256=SAIrsh9WkC74sm9ot
|
|
240
244
|
cjkcms/templates/cjkcms/blocks/quote_block_start_end_quote.html,sha256=hgnKMomSiiNlanYUQ0qk-HiT56xV5Nm6n-kQ6VpcHh8,998
|
241
245
|
cjkcms/templates/cjkcms/blocks/reusable_content_block.html,sha256=liERiN4fXbzO2af1sAz8a9kLrnqa_97i4DQxlVdMZsY,216
|
242
246
|
cjkcms/templates/cjkcms/blocks/rich_text_block.html,sha256=pfJ0ZjPeMtuvGSQKdCIbvzLVklUNDBj4qLBfN0hRafs,91
|
247
|
+
cjkcms/templates/cjkcms/blocks/steps_block.html,sha256=Zeost7ghELYGfkHX-M7oFTs2cu-Wko05fGwgTNf40D8,3910
|
243
248
|
cjkcms/templates/cjkcms/blocks/table_block.html,sha256=Rh-X9FLhj6DJrKlspxl9L9m8tHVbBQfmtaWhRLiUyyw,1095
|
244
249
|
cjkcms/templates/cjkcms/cookieconsent/languages.html,sha256=4bRgPTMyp4TXTfdUYuFF8J9V4O-KmBl834BfHS_nz7Y,3672
|
245
250
|
cjkcms/templates/cjkcms/formfields/date.html,sha256=c4XsbCfGEuF6LA-7lqGM_afcgX4vYjnDVj4MucmGvnw,267
|
@@ -337,22 +342,6 @@ cjkcms/tests/test_urls.py,sha256=otiKZcs1WLDQM6AOfcdZgsOGDwea1qS3VEc8Yy-FV-Q,288
|
|
337
342
|
cjkcms/tests/test_utils.py,sha256=F6YLRMJjcf0cLiB77KnE5_XQW9lsy_yFB4dtZxjpSs8,2636
|
338
343
|
cjkcms/tests/test_webpage.py,sha256=PvXeXbawigObsdi_YpQNuHFx3Lqi6wM3ktVHZsxYbr4,1520
|
339
344
|
cjkcms/tests/urls.py,sha256=_ksKz7HBHJtQK3HxC9cmJMX_dt6n4alx3FXjcL-cu28,850
|
340
|
-
cjkcms/tests/media/images/test.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
341
|
-
cjkcms/tests/media/images/test_3ZB0HiN.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
342
|
-
cjkcms/tests/media/images/test_6mZL9NZ.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
343
|
-
cjkcms/tests/media/images/test_OSPIkp8.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
344
|
-
cjkcms/tests/media/images/test_YBCJmYS.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
345
|
-
cjkcms/tests/media/images/test_q0QJ4UA.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
346
|
-
cjkcms/tests/media/images/test_vMIUDCh.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
347
|
-
cjkcms/tests/media/images/test_wMRIuGx.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
348
|
-
cjkcms/tests/media/original_images/test.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
349
|
-
cjkcms/tests/media/original_images/test_3ZB0HiN.png,sha256=GvnFOJX4x2u1s4LjNld27VHvbaASC5OCHs4bAyLHq7Q,2307
|
350
|
-
cjkcms/tests/media/original_images/test_6mZL9NZ.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
351
|
-
cjkcms/tests/media/original_images/test_OSPIkp8.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
352
|
-
cjkcms/tests/media/original_images/test_YBCJmYS.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
353
|
-
cjkcms/tests/media/original_images/test_q0QJ4UA.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
354
|
-
cjkcms/tests/media/original_images/test_vMIUDCh.png,sha256=GvnFOJX4x2u1s4LjNld27VHvbaASC5OCHs4bAyLHq7Q,2307
|
355
|
-
cjkcms/tests/media/original_images/test_wMRIuGx.png,sha256=GvnFOJX4x2u1s4LjNld27VHvbaASC5OCHs4bAyLHq7Q,2307
|
356
345
|
cjkcms/tests/testapp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
357
346
|
cjkcms/tests/testapp/apps.py,sha256=EwyrkWTu-_OoLoERBTlqkqfPIIrEsbHY3kbCxgrv_7I,169
|
358
347
|
cjkcms/tests/testapp/models.py,sha256=N11rFqkMqQNVagoLjmIX8BVsgfW7wFqYKiDB9gE0PTo,575
|
@@ -362,9 +351,9 @@ cjkcms/tests/testapp/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
|
|
362
351
|
cjkcms/utils/__init__.py,sha256=uLr0n5jD1dmdICgpv7WjgAtuyrs50ERyRLVUmoSV1cA,110
|
363
352
|
cjkcms/utils/richtext.py,sha256=dgNVQIAXevXzaVhCtGc7XW4PDwTFiGEL7q-YGgpcEjo,573
|
364
353
|
cjkcms/utils/visibility.py,sha256=sbxIM5g903AydRdBbwwahB8tpoyQrHjmERn9Yg_aJ4g,1433
|
365
|
-
wagtail_cjkcms-25.
|
366
|
-
wagtail_cjkcms-25.
|
367
|
-
wagtail_cjkcms-25.
|
368
|
-
wagtail_cjkcms-25.
|
369
|
-
wagtail_cjkcms-25.
|
370
|
-
wagtail_cjkcms-25.
|
354
|
+
wagtail_cjkcms-25.8.2.dist-info/licenses/LICENSE,sha256=KHsCh1fKOZzvcKe1a9h3FlDjTjK_UurO3wHK55TnHHo,1538
|
355
|
+
wagtail_cjkcms-25.8.2.dist-info/METADATA,sha256=O33a0MkkKXp2rBZNECvGCnFNACTgDYMj_ExaG0bMwPU,3148
|
356
|
+
wagtail_cjkcms-25.8.2.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
|
357
|
+
wagtail_cjkcms-25.8.2.dist-info/entry_points.txt,sha256=FzoiFENdZ1uebNztyz6GlswkumQspd5VjWbR9MUIH_8,50
|
358
|
+
wagtail_cjkcms-25.8.2.dist-info/top_level.txt,sha256=8wJGOGo1pG5nO5akfcMzA7i3ndj5868I8w35vTT0JJM,7
|
359
|
+
wagtail_cjkcms-25.8.2.dist-info/RECORD,,
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|