wagtail-cjkcms 23.10.1__py2.py3-none-any.whl → 23.10.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/migrations/0016_layoutsettings_breadcrumb_icon_and_more.py +32 -0
- cjkcms/models/wagtailsettings_models.py +22 -2
- cjkcms/static/cjkcms/css/cjkcms-front.css +6 -0
- cjkcms/static/cjkcms/images/icons/caret-right-fill.svg +3 -0
- cjkcms/static/cjkcms/images/icons/caret-right.svg +3 -0
- cjkcms/static/cjkcms/images/icons/chevron-right.svg +3 -0
- cjkcms/static/cjkcms/images/icons/slash.svg +3 -0
- cjkcms/templates/cjkcms/pages/base.html +5 -0
- cjkcms/templates/cjkcms/pages/search.html +2 -2
- cjkcms/templates/cjkcms/pages/web_page_notitle.html +4 -0
- cjkcms/templates/cjkcms/snippets/breadcrumbs.html +27 -0
- cjkcms/templates/cjkcms/snippets/navbar_search.html +2 -5
- cjkcms/tests/test_templatetags.py +1 -2
- {wagtail_cjkcms-23.10.1.dist-info → wagtail_cjkcms-23.10.2.dist-info}/METADATA +1 -1
- {wagtail_cjkcms-23.10.1.dist-info → wagtail_cjkcms-23.10.2.dist-info}/RECORD +20 -16
- cjkcms/tests/media/images/test_mGsVkXU.original.png +0 -0
- cjkcms/tests/media/original_images/test_mGsVkXU.png +0 -0
- {wagtail_cjkcms-23.10.1.dist-info → wagtail_cjkcms-23.10.2.dist-info}/LICENSE +0 -0
- {wagtail_cjkcms-23.10.1.dist-info → wagtail_cjkcms-23.10.2.dist-info}/WHEEL +0 -0
- {wagtail_cjkcms-23.10.1.dist-info → wagtail_cjkcms-23.10.2.dist-info}/entry_points.txt +0 -0
- {wagtail_cjkcms-23.10.1.dist-info → wagtail_cjkcms-23.10.2.dist-info}/top_level.txt +0 -0
cjkcms/__init__.py
CHANGED
@@ -0,0 +1,32 @@
|
|
1
|
+
# Generated by Django 4.2.6 on 2023-10-07 09:55
|
2
|
+
|
3
|
+
from django.db import migrations, models
|
4
|
+
|
5
|
+
|
6
|
+
class Migration(migrations.Migration):
|
7
|
+
dependencies = [
|
8
|
+
("cjkcms", "0015_eventcalendar"),
|
9
|
+
]
|
10
|
+
|
11
|
+
operations = [
|
12
|
+
migrations.AddField(
|
13
|
+
model_name="layoutsettings",
|
14
|
+
name="breadcrumb_icon",
|
15
|
+
field=models.CharField(
|
16
|
+
blank=True,
|
17
|
+
default="slash",
|
18
|
+
help_text="Bootstrap icon name. See docs for built-in options.",
|
19
|
+
max_length=32,
|
20
|
+
verbose_name="Breadcrumb icon",
|
21
|
+
),
|
22
|
+
),
|
23
|
+
migrations.AddField(
|
24
|
+
model_name="layoutsettings",
|
25
|
+
name="breadcrumbs",
|
26
|
+
field=models.BooleanField(
|
27
|
+
default=False,
|
28
|
+
help_text="Show breadcrumbs in page header",
|
29
|
+
verbose_name="Breadcrumbs",
|
30
|
+
),
|
31
|
+
),
|
32
|
+
]
|
@@ -197,6 +197,19 @@ class LayoutSettings(ClusterableModel, BaseSiteSetting):
|
|
197
197
|
help_text=_("Choose lang choice selector"),
|
198
198
|
)
|
199
199
|
|
200
|
+
breadcrumbs = models.BooleanField(
|
201
|
+
default=False,
|
202
|
+
verbose_name=_("Breadcrumbs"),
|
203
|
+
help_text=_("Show breadcrumbs in page header"),
|
204
|
+
)
|
205
|
+
breadcrumb_icon = models.CharField(
|
206
|
+
blank=True,
|
207
|
+
max_length=32,
|
208
|
+
default="slash",
|
209
|
+
verbose_name=_("Breadcrumb icon"),
|
210
|
+
help_text=_("Bootstrap icon name. See docs for built-in options."),
|
211
|
+
)
|
212
|
+
|
200
213
|
frontend_theme = models.CharField(
|
201
214
|
blank=True,
|
202
215
|
max_length=50,
|
@@ -289,6 +302,13 @@ class LayoutSettings(ClusterableModel, BaseSiteSetting):
|
|
289
302
|
],
|
290
303
|
heading=_("Site Navbar Layout"),
|
291
304
|
),
|
305
|
+
MultiFieldPanel(
|
306
|
+
[
|
307
|
+
FieldPanel("breadcrumbs"),
|
308
|
+
FieldPanel("breadcrumb_icon"),
|
309
|
+
],
|
310
|
+
heading=_("Site Header / Breadcrumbs"),
|
311
|
+
),
|
292
312
|
InlinePanel(
|
293
313
|
"site_footer",
|
294
314
|
help_text=_("Choose one or more footers"),
|
@@ -354,7 +374,7 @@ class LayoutSettings(ClusterableModel, BaseSiteSetting):
|
|
354
374
|
class NavbarOrderable(Orderable, models.Model):
|
355
375
|
navbar_chooser = ParentalKey(
|
356
376
|
LayoutSettings, related_name="site_navbar", verbose_name=_("Site Navbars")
|
357
|
-
)
|
377
|
+
) # type: ignore
|
358
378
|
navbar = models.ForeignKey(
|
359
379
|
Navbar,
|
360
380
|
blank=True,
|
@@ -368,7 +388,7 @@ class NavbarOrderable(Orderable, models.Model):
|
|
368
388
|
class FooterOrderable(Orderable, models.Model):
|
369
389
|
footer_chooser = ParentalKey(
|
370
390
|
LayoutSettings, related_name="site_footer", verbose_name=_("Site Footers")
|
371
|
-
)
|
391
|
+
) # type: ignore
|
372
392
|
footer = models.ForeignKey(
|
373
393
|
Footer,
|
374
394
|
blank=True,
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-caret-right" viewBox="0 0 16 16">
|
2
|
+
<path d="M6 12.796V3.204L11.481 8 6 12.796zm.659.753 5.48-4.796a1 1 0 0 0 0-1.506L6.66 2.451C6.011 1.885 5 2.345 5 3.204v9.592a1 1 0 0 0 1.659.753z"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16">
|
2
|
+
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"/>
|
3
|
+
</svg>
|
@@ -24,7 +24,7 @@
|
|
24
24
|
<form class="mt-5" action="{% url 'cjkcms_search' %}" method="GET">
|
25
25
|
<div class="row">
|
26
26
|
<div class="col-sm-9">
|
27
|
-
{% bootstrap_form form size='
|
27
|
+
{% bootstrap_form form size='lg' layout='inline' %}
|
28
28
|
</div>
|
29
29
|
<div class="col-sm-3">
|
30
30
|
<div class="form-group">
|
@@ -46,7 +46,7 @@
|
|
46
46
|
{% for pt in pagetypes %}
|
47
47
|
<li class="nav-item">
|
48
48
|
{% query_update qs_nop 't' pt.content_type.model as qs_t %}
|
49
|
-
<a class="nav-link {% if form.t.value == pt.content_type.model %}active{% endif %}" href="?{{qs_t.urlencode}}">{{pt
|
49
|
+
<a class="nav-link {% if form.t.value == pt.content_type.model %}active{% endif %}" href="?{{qs_t.urlencode}}">{{pt|get_plural_name_of_class}}</a>
|
50
50
|
</li>
|
51
51
|
{% endfor %}
|
52
52
|
</ul>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
{% load static wagtailcore_tags wagtailimages_tags cjkcms_tags wagtailsettings_tags %}
|
2
|
+
<!-- ========================= breadcrumbs-section start ========================= -->
|
3
|
+
{% if self.get_ancestors|length > 1 %}
|
4
|
+
<div class="container py-1">
|
5
|
+
<nav aria-label="breadcrumb">
|
6
|
+
<ol class="breadcrumb d-flex align-items-center">
|
7
|
+
{% block breadcrumb_title %}
|
8
|
+
{% for p in self.get_ancestors %}
|
9
|
+
{% if p.is_root == False %}
|
10
|
+
<li class="none">
|
11
|
+
<object type="image/svg+xml" data="{% static 'cjkcms/images/icons/'|add:settings.cjkcms.LayoutSettings.breadcrumb_icon|add:'.svg' %}"
|
12
|
+
class="opacity-75" style="margin-bottom:-2px;"></object>
|
13
|
+
<a href="{{ p.url }}">{{ p.title }}</a>
|
14
|
+
</li>
|
15
|
+
|
16
|
+
{% endif %}
|
17
|
+
{% endfor %}
|
18
|
+
<li class="breadcrumb-item active ms-1" aria-current="page">
|
19
|
+
<object type="image/svg+xml" data="{% static 'cjkcms/images/icons/'|add:settings.cjkcms.LayoutSettings.breadcrumb_icon|add:'.svg' %}"
|
20
|
+
class="opacity-75" style="margin-bottom:-2px;"></object>
|
21
|
+
{{ page.title }}</li>
|
22
|
+
{% endblock %}
|
23
|
+
</ol>
|
24
|
+
</nav>
|
25
|
+
</div>
|
26
|
+
{% endif %}
|
27
|
+
<!-- ========================= breadcrumbs-section end ========================= -->
|
@@ -1,9 +1,6 @@
|
|
1
|
-
{% load cjkcms_tags i18n %}
|
1
|
+
{% load cjkcms_tags django_bootstrap5 i18n %}
|
2
2
|
<form action="{% url 'cjkcms_search' %}" method="GET">
|
3
|
-
{%
|
3
|
+
{% csrf_token %}
|
4
4
|
{% get_searchform request as form %}
|
5
5
|
{% bootstrap_form form layout='inline' %}
|
6
|
-
<!-- div class="form-group">
|
7
|
-
<button class="btn btn-outline-primary ml-2" type="submit">{% trans 'Search' %}</button>
|
8
|
-
</div -->
|
9
6
|
</form>
|
@@ -129,8 +129,7 @@ class TemplateTagTests(TestCase):
|
|
129
129
|
|
130
130
|
def test_is_in_future_template_tag(self):
|
131
131
|
template = Template(
|
132
|
-
"""{% load cjkcms_tags %}
|
133
|
-
{% if the_date|is_in_future %}future{% else %}not future{% endif %}"""
|
132
|
+
"""{% load cjkcms_tags %}{% if the_date|is_in_future %}future{% else %}not future{% endif %}""" # noqa: E501
|
134
133
|
)
|
135
134
|
context = Context({"the_date": datetime.now() + timedelta(days=1)})
|
136
135
|
result = template.render(context)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
cjkcms/__init__.py,sha256=
|
1
|
+
cjkcms/__init__.py,sha256=eOL4IsGkUTHwsLt6km805joXGQcf9wlhnDPVc9LOflM,273
|
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
|
@@ -47,6 +47,7 @@ cjkcms/migrations/0012_remove_analyticssettings_ga_tracking_id_and_more.py,sha25
|
|
47
47
|
cjkcms/migrations/0013_socialmediasettings_location.py,sha256=uVOIDxfmKvnWsd7z1T9Fgv3009amrcl7RzyiMMuiN2U,780
|
48
48
|
cjkcms/migrations/0014_navbar_alignment.py,sha256=arSBLVajQBkjLv7r8AbXnkL8ayxkmf_AlISCuZ1-O2U,818
|
49
49
|
cjkcms/migrations/0015_eventcalendar.py,sha256=WQFnU23gHcPMzcHOchNU4LFTPWrgZNyMj_Ma54BPUvs,1467
|
50
|
+
cjkcms/migrations/0016_layoutsettings_breadcrumb_icon_and_more.py,sha256=PnQsKpWBXPJPj5FCNDTemvT1_yaXPy92FPTwm1FmckM,918
|
50
51
|
cjkcms/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
51
52
|
cjkcms/models/__init__.py,sha256=f99GmxfFxGtQl8JvZFz8rAtklCIesLoSccyhhi2xgPU,232
|
52
53
|
cjkcms/models/admin_sidebar.py,sha256=R3gtDUfbtdVPLNb-__XZWYk9Ap5k9WkHc-u6XDhesdc,665
|
@@ -54,7 +55,7 @@ cjkcms/models/cms_models.py,sha256=9U46xwPidQfUlXnuVUW5IbtphXX_8djJD4CohoP3NbU,2
|
|
54
55
|
cjkcms/models/integration_models.py,sha256=L29OBwLH8DfHtDplu218UGbbvL94Erk3J_R7n365zQM,6302
|
55
56
|
cjkcms/models/page_models.py,sha256=I7KiJDC_Jx87Gi14NADbxkO_S_DfKQKBblZqOdRx_Uo,23904
|
56
57
|
cjkcms/models/snippet_models.py,sha256=LyA0bpZIG8_bFPQBUOM2STtxN_nA2_UU-xpdCjnPkqo,16823
|
57
|
-
cjkcms/models/wagtailsettings_models.py,sha256=
|
58
|
+
cjkcms/models/wagtailsettings_models.py,sha256=pbnqX6RBX5dB9FxuJwCWh7S3VYrD-xwj9vt8G0yf8xU,19937
|
58
59
|
cjkcms/project_template/basic/.editorconfig,sha256=1wgq7hgAUSHLfuy4Jh9BJ4ysyQL0si5UBbCu_OMz9hg,722
|
59
60
|
cjkcms/project_template/basic/.gitattributes,sha256=TXzwnsENJoG4wiS2LEREDeZ0JI_vRGA6EEijwUCVJvE,364
|
60
61
|
cjkcms/project_template/basic/.gitignore,sha256=EBotJhW2lEZ9u6nXwClkSq9rVawXsCh6h4u38g3lM_I,275
|
@@ -138,11 +139,15 @@ cjkcms/static/cjkcms/bi/fonts/bootstrap-icons.woff,sha256=mZVQ-vv7wOBHSztclF3yh7
|
|
138
139
|
cjkcms/static/cjkcms/bi/fonts/bootstrap-icons.woff2,sha256=z-RbmB0bkbFzNho0z85fYIk9vRrEryw6wR_BdVLFQB8,121340
|
139
140
|
cjkcms/static/cjkcms/css/cjkcms-admin.css,sha256=I_ca37IMgYbh75CrhRenPvu3TzMVFgmDO2246fGijkI,846
|
140
141
|
cjkcms/static/cjkcms/css/cjkcms-editor.css,sha256=rqUeJtq7TNyNpBvSkTOKzpFMUZ-Vh3K075EcmAvG05Q,1104
|
141
|
-
cjkcms/static/cjkcms/css/cjkcms-front.css,sha256=
|
142
|
+
cjkcms/static/cjkcms/css/cjkcms-front.css,sha256=3wiwzl7QpwNKjXC9VdrOC_-TI_X77fK3dtNOnKSwnik,4688
|
142
143
|
cjkcms/static/cjkcms/images/avatars/default.png,sha256=f8QXRtZ1j3s2CItnnL8XbbhgfW2yPHKnijwG3d5qdb0,535
|
143
144
|
cjkcms/static/cjkcms/images/avatars/default.svg,sha256=kVYNxHtkb6nHbTCXyDG3qvS_-IgS9PknIf2I8KI9MrE,384
|
144
145
|
cjkcms/static/cjkcms/images/icons/calendar-day.svg,sha256=S6Wk7QnGUEkSzabH8ob5Vqoum1MBRNuQ4imz-in9n6Y,581
|
146
|
+
cjkcms/static/cjkcms/images/icons/caret-right-fill.svg,sha256=Ue1QavYKOwm-x_dZWyF8lt33ZeKwsAi1cpue3IAqd6c,268
|
147
|
+
cjkcms/static/cjkcms/images/icons/caret-right.svg,sha256=FDqMP1sM10ExP1SB7gciQu2B56oXUT42W6tNbKlMAaM,289
|
148
|
+
cjkcms/static/cjkcms/images/icons/chevron-right.svg,sha256=9q6XIoCI3aalB9WuCshJfY3xytG5F9ioeld03qMPmkI,291
|
145
149
|
cjkcms/static/cjkcms/images/icons/quote.svg,sha256=lfFcHG9T6WPpWn2eJuxYcpfzvdex_cbHLV9YGnT5Cs0,705
|
150
|
+
cjkcms/static/cjkcms/images/icons/slash.svg,sha256=hXuFVJd4K9pZJTzv6LBq7641HcMxVj-GrYyU22gOZEw,252
|
146
151
|
cjkcms/static/cjkcms/images/icons/world.svg,sha256=uAe-G_uRbnpHHMWnQygX1RWOa-LTraAMt2z0M3kB6YY,1374
|
147
152
|
cjkcms/static/cjkcms/images/logos/cms-logo-long.svg,sha256=daTyVUvwJ-hxBkNOSTQExAQL37K5ikQ0m_WStGzvwUs,4166
|
148
153
|
cjkcms/static/cjkcms/images/logos/cms-logo-square.svg,sha256=-KYu_o-r1TXCt45_xqzw02ok5-Gb-6PnpVjqsmd0ST4,4218
|
@@ -254,22 +259,23 @@ cjkcms/templates/cjkcms/includes/stream_forms/render_field.html,sha256=F3FHztOTG
|
|
254
259
|
cjkcms/templates/cjkcms/pages/article_index_page.html,sha256=K_5xM-d2EPDJ961LLqiOLompzSoJz1cHQbwvRNDZfH4,2002
|
255
260
|
cjkcms/templates/cjkcms/pages/article_page.html,sha256=jXOAOznaiSPULcZQB-A8AYmeTU9-xEWcyAgnrYAJ74Y,2031
|
256
261
|
cjkcms/templates/cjkcms/pages/article_page.search.html,sha256=0L4zGoqu1SP1F2BIIYeD9IMaxpjIsqawpIzEN8e94kY,1018
|
257
|
-
cjkcms/templates/cjkcms/pages/base.html,sha256=
|
262
|
+
cjkcms/templates/cjkcms/pages/base.html,sha256=XcQY9gkoYPrv-qg11dKomTfI3GKw-YDh9uqj9WPntJY,9488
|
258
263
|
cjkcms/templates/cjkcms/pages/form_page_landing.html,sha256=zdySSHOWF10-x2MFLH9XMjeFSeNTMRM-VpvZ1tM8kw0,248
|
259
264
|
cjkcms/templates/cjkcms/pages/home_page.html,sha256=67h2o3EVXsrivMqM26OZV-7-H_9vv1clFJ4MFMknIMU,50
|
260
265
|
cjkcms/templates/cjkcms/pages/page.mini.html,sha256=5E3pXu7fxt1gCimv4MObgOF6BkrYKuRtW3xrK71Z9lA,491
|
261
|
-
cjkcms/templates/cjkcms/pages/search.html,sha256=
|
266
|
+
cjkcms/templates/cjkcms/pages/search.html,sha256=byE6e5rd3q-9OW_4Zsv2-WdhhPfNuP452NRfdJP9TUg,2613
|
262
267
|
cjkcms/templates/cjkcms/pages/search_result.html,sha256=peGL-4UtHGQdYlmdUqGUX3MxZLuw4EcxY00yQFW_7Ag,582
|
263
268
|
cjkcms/templates/cjkcms/pages/web_page.html,sha256=floOVzOyPYvTMKfWd3pY0vyrqG7jt4WS5xJt3j6gZM0,594
|
264
|
-
cjkcms/templates/cjkcms/pages/web_page_notitle.html,sha256=
|
269
|
+
cjkcms/templates/cjkcms/pages/web_page_notitle.html,sha256=HjwzN8NpJBOVjKM6_cLtPfUllotFMkvQPLXL2aoB6A0,378
|
265
270
|
cjkcms/templates/cjkcms/snippets/actionbar.html,sha256=gI_fVpM7InInvEOaqb1Xs5a0NHQVE8MKKeE2PI_eXLs,31
|
266
271
|
cjkcms/templates/cjkcms/snippets/bottom_corner_lang_selector.html,sha256=_gcHmob1tMeT3_KppsozcWw4F1ocyF3YiOunUmBesjs,1943
|
272
|
+
cjkcms/templates/cjkcms/snippets/breadcrumbs.html,sha256=zvugWh1kS2Eobn1T4eq1XEngn49z1ME7IlEwrmXUxyo,1311
|
267
273
|
cjkcms/templates/cjkcms/snippets/footer.html,sha256=_QUtV_LHgGjh-XLzw5Fd_Lxdrx9on5G0luFaa6oirB0,430
|
268
274
|
cjkcms/templates/cjkcms/snippets/frontend_assets.html,sha256=cTotNpBFzrbQMAHEvQGrgq7OPHHY8h2-Ei6qlKqM2LM,2027
|
269
275
|
cjkcms/templates/cjkcms/snippets/frontend_scripts.html,sha256=TlC-588F0NmbTTSGkGvofbz77-JlkAKWOEVwhQy-HWE,1196
|
270
276
|
cjkcms/templates/cjkcms/snippets/navbar.html,sha256=VM2Yx4oxV2OjTBZyQ2PYdraU38hLMMLxN0oyqmC_tpk,2983
|
271
277
|
cjkcms/templates/cjkcms/snippets/navbar_lang_selector.html,sha256=sn7KLDentGOsMZ9CNAxdAGLYO3a_mYfSUhJ6iZzteOE,836
|
272
|
-
cjkcms/templates/cjkcms/snippets/navbar_search.html,sha256=
|
278
|
+
cjkcms/templates/cjkcms/snippets/navbar_search.html,sha256=3g_pJyeGuTsmWY4WzXUvuWk-zdpXHmBKzL5sRJ815WM,238
|
273
279
|
cjkcms/templates/cjkcms/snippets/social_media.html,sha256=63Yd0X5I5WhshRlv23H6Hy8e2rBUnrzXedTP5HqP3lE,330
|
274
280
|
cjkcms/templates/cjkcms/snippets/social_media_icons.html,sha256=pPFNLLYD5EvlQh-IQbciTt-tgKHE6ZufW3i6WSB9N_o,2222
|
275
281
|
cjkcms/templates/cjkcms/snippets/social_media_nav_block.html,sha256=1eavf1UyigPkVgrHMQ3kgfnaEvzXnF22J-YxK5hshn0,173
|
@@ -297,23 +303,21 @@ cjkcms/tests/test_bin.py,sha256=z-6vMYYqhv18UO00sUPrNpLLue0mbRr5vzqisu7UKAY,3506
|
|
297
303
|
cjkcms/tests/test_gravatar.py,sha256=UWu1cVi3Gj96yqeQu795gw6FVPbZ44eCkkH1NGEGgBo,2629
|
298
304
|
cjkcms/tests/test_search_blocks.py,sha256=VDQyGL8UFuN3HNqrkfRpjfKIX1lm_YT2sC_DQvU_H7c,4760
|
299
305
|
cjkcms/tests/test_settings.py,sha256=n2B-qtaSdMJC4KuMGGx6qo5HIU73aaImbMkI_o7tK8A,2665
|
300
|
-
cjkcms/tests/test_templatetags.py,sha256=
|
306
|
+
cjkcms/tests/test_templatetags.py,sha256=deNuZtSlr29hokn7azTyB2FhwnG3x0L13bjdHGA4jrw,5313
|
301
307
|
cjkcms/tests/test_urls.py,sha256=UgPDm8bPXbhe3AWuoWYGWAs3ObzVBHW3AWYR67YOfS4,2673
|
302
308
|
cjkcms/tests/test_webpage.py,sha256=PvXeXbawigObsdi_YpQNuHFx3Lqi6wM3ktVHZsxYbr4,1520
|
303
309
|
cjkcms/tests/urls.py,sha256=_ksKz7HBHJtQK3HxC9cmJMX_dt6n4alx3FXjcL-cu28,850
|
304
310
|
cjkcms/tests/media/images/test.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
305
|
-
cjkcms/tests/media/images/test_mGsVkXU.original.png,sha256=nLMtadXZhXXbt6DTm5enrysKX7cfWiUudtbS2X7mSzI,1938
|
306
311
|
cjkcms/tests/media/original_images/test.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
307
|
-
cjkcms/tests/media/original_images/test_mGsVkXU.png,sha256=xJDvcufuQ-AM1HT-zgMxYEORko4rdK_8MSHU-puJNW8,2306
|
308
312
|
cjkcms/tests/testapp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
309
313
|
cjkcms/tests/testapp/apps.py,sha256=EwyrkWTu-_OoLoERBTlqkqfPIIrEsbHY3kbCxgrv_7I,169
|
310
314
|
cjkcms/tests/testapp/models.py,sha256=Rkn9KHrGbLzrKjP4y_gwtXma1_fJOZNU7ekb689fJEU,488
|
311
315
|
cjkcms/tests/testapp/migrations/0001_initial.py,sha256=hxr-r-42IQEGr_OsZkxXXCW7wbxAHuI_OLOkn-seJUU,4942
|
312
316
|
cjkcms/tests/testapp/migrations/0002_create_homepage.py,sha256=EfsxHh1oyqwahW9RVpTvaRDx_CHtFSJQahKEr7XC5Gg,1999
|
313
317
|
cjkcms/tests/testapp/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
314
|
-
wagtail_cjkcms-23.10.
|
315
|
-
wagtail_cjkcms-23.10.
|
316
|
-
wagtail_cjkcms-23.10.
|
317
|
-
wagtail_cjkcms-23.10.
|
318
|
-
wagtail_cjkcms-23.10.
|
319
|
-
wagtail_cjkcms-23.10.
|
318
|
+
wagtail_cjkcms-23.10.2.dist-info/LICENSE,sha256=KHsCh1fKOZzvcKe1a9h3FlDjTjK_UurO3wHK55TnHHo,1538
|
319
|
+
wagtail_cjkcms-23.10.2.dist-info/METADATA,sha256=0mWmVhuNrgyG2cepB7LBAQSmaqsnyLwvFTyu7NepcuI,5295
|
320
|
+
wagtail_cjkcms-23.10.2.dist-info/WHEEL,sha256=m9WAupmBd2JGDsXWQGJgMGXIWbQY3F5c2xBJbBhq0nY,110
|
321
|
+
wagtail_cjkcms-23.10.2.dist-info/entry_points.txt,sha256=FzoiFENdZ1uebNztyz6GlswkumQspd5VjWbR9MUIH_8,50
|
322
|
+
wagtail_cjkcms-23.10.2.dist-info/top_level.txt,sha256=8wJGOGo1pG5nO5akfcMzA7i3ndj5868I8w35vTT0JJM,7
|
323
|
+
wagtail_cjkcms-23.10.2.dist-info/RECORD,,
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|