wagtail-tw-blocks 0.2.6__py3-none-any.whl → 0.3.1__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.
- wagtail_blocks/blocks.py +26 -6
- wagtail_blocks/locale/ar/LC_MESSAGES/django.po +96 -89
- wagtail_blocks/locale/cn/LC_MESSAGES/django.po +98 -83
- wagtail_blocks/locale/de/LC_MESSAGES/django.po +98 -83
- wagtail_blocks/locale/es/LC_MESSAGES/django.po +98 -83
- wagtail_blocks/locale/fr/LC_MESSAGES/django.po +100 -84
- wagtail_blocks/locale/tr/LC_MESSAGES/django.po +98 -83
- wagtail_blocks/static/wagtail_blocks/css/styles.css +1 -1
- wagtail_blocks/static/wagtail_blocks/package-lock.json +4 -4
- wagtail_blocks/static/wagtail_blocks/package.json +1 -1
- wagtail_blocks/templates/wagtail_blocks/blocks/accordion.html +25 -0
- wagtail_blocks/templates/wagtail_blocks/blocks/alert.html +1 -1
- wagtail_blocks/templates/wagtail_blocks/blocks/code.html +2 -0
- wagtail_blocks/templates/wagtail_blocks/blocks/tabs.html +1 -1
- wagtail_blocks/templates/wagtail_blocks/styles.html +92 -0
- {wagtail_tw_blocks-0.2.6.dist-info → wagtail_tw_blocks-0.3.1.dist-info}/METADATA +28 -45
- {wagtail_tw_blocks-0.2.6.dist-info → wagtail_tw_blocks-0.3.1.dist-info}/RECORD +19 -18
- {wagtail_tw_blocks-0.2.6.dist-info → wagtail_tw_blocks-0.3.1.dist-info}/WHEEL +0 -0
- {wagtail_tw_blocks-0.2.6.dist-info → wagtail_tw_blocks-0.3.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
<div
|
|
5
5
|
class="card card-sm lg:card-md 2xl:card-lg border border-base-300 bg-base-200"
|
|
6
6
|
>
|
|
7
|
+
{% if self.show_header %}
|
|
7
8
|
<div class="flex items-center justify-between gap-4 p-2">
|
|
8
9
|
{% if self.show_window_btns %}
|
|
9
10
|
<div class="flex items-center gap-2">
|
|
@@ -56,6 +57,7 @@
|
|
|
56
57
|
{% endif %}
|
|
57
58
|
</div>
|
|
58
59
|
</div>
|
|
60
|
+
{% endif %}
|
|
59
61
|
|
|
60
62
|
<pre
|
|
61
63
|
class="overflow-x-auto max-w-full rounded-box overflow-clip"
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
type="radio"
|
|
9
9
|
aria-label="{{ item.title }}"
|
|
10
10
|
name="{{ self.name|slugify }}"
|
|
11
|
-
|
|
11
|
+
{% if item.is_selected %}checked{% endif %}
|
|
12
12
|
/>
|
|
13
13
|
<div
|
|
14
14
|
class="tab-content bg-base-100 border-base-300 p-4 {% if self.style != 'lift' %} rounded-field {% endif %}"
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<!-- Accordion styles -->
|
|
2
|
+
<div class="collapse collapse-arrow"></div>
|
|
3
|
+
<div class="collapse collapse-plus"></div>
|
|
4
|
+
|
|
5
|
+
<!-- Alert styles -->
|
|
6
|
+
<div class="alert alert-info"></div>
|
|
7
|
+
<div class="alert alert-success"></div>
|
|
8
|
+
<div class="alert alert-warning"></div>
|
|
9
|
+
<div class="alert alert-info"></div>
|
|
10
|
+
<!-- Soft -->
|
|
11
|
+
<div class="alert alert-soft alert-info"></div>
|
|
12
|
+
<div class="alert alert-soft alert-success"></div>
|
|
13
|
+
<div class="alert alert-soft alert-warning"></div>
|
|
14
|
+
<div class="alert alert-soft alert-info"></div>
|
|
15
|
+
<!-- Outline -->
|
|
16
|
+
<div class="alert alert-outline alert-info"></div>
|
|
17
|
+
<div class="alert alert-outline alert-success"></div>
|
|
18
|
+
<div class="alert alert-outline alert-warning"></div>
|
|
19
|
+
<div class="alert alert-outline alert-info"></div>
|
|
20
|
+
<!-- Dash -->
|
|
21
|
+
<div class="alert alert-dash alert-info"></div>
|
|
22
|
+
<div class="alert alert-dash alert-success"></div>
|
|
23
|
+
<div class="alert alert-dash alert-warning"></div>
|
|
24
|
+
<div class="alert alert-dash alert-info"></div>
|
|
25
|
+
|
|
26
|
+
<!-- Buttons -->
|
|
27
|
+
<button class="btn btn-primary"></button>
|
|
28
|
+
<button class="btn btn-secondary"></button>
|
|
29
|
+
<button class="btn btn-accent"></button>
|
|
30
|
+
<button class="btn btn-info"></button>
|
|
31
|
+
<button class="btn btn-success"></button>
|
|
32
|
+
<button class="btn btn-warning"></button>
|
|
33
|
+
<button class="btn btn-error"></button>
|
|
34
|
+
<!-- Soft -->
|
|
35
|
+
<button class="btn btn-soft btn-primary"></button>
|
|
36
|
+
<button class="btn btn-soft btn-secondary"></button>
|
|
37
|
+
<button class="btn btn-soft btn-accent"></button>
|
|
38
|
+
<button class="btn btn-soft btn-info"></button>
|
|
39
|
+
<button class="btn btn-soft btn-success"></button>
|
|
40
|
+
<button class="btn btn-soft btn-warning"></button>
|
|
41
|
+
<button class="btn btn-soft btn-error"></button>
|
|
42
|
+
<!-- Outline -->
|
|
43
|
+
<button class="btn btn-outline btn-primary"></button>
|
|
44
|
+
<button class="btn btn-outline btn-secondary"></button>
|
|
45
|
+
<button class="btn btn-outline btn-accent"></button>
|
|
46
|
+
<button class="btn btn-outline btn-info"></button>
|
|
47
|
+
<button class="btn btn-outline btn-success"></button>
|
|
48
|
+
<button class="btn btn-outline btn-warning"></button>
|
|
49
|
+
<button class="btn btn-outline btn-error"></button>
|
|
50
|
+
<!-- Dash -->
|
|
51
|
+
<button class="btn btn-dash btn-primary"></button>
|
|
52
|
+
<button class="btn btn-dash btn-secondary"></button>
|
|
53
|
+
<button class="btn btn-dash btn-accent"></button>
|
|
54
|
+
<button class="btn btn-dash btn-info"></button>
|
|
55
|
+
<button class="btn btn-dash btn-success"></button>
|
|
56
|
+
<button class="btn btn-dash btn-warning"></button>
|
|
57
|
+
<button class="btn btn-dash btn-error"></button>
|
|
58
|
+
<!-- Ghost -->
|
|
59
|
+
<button class="btn btn-ghost btn-primary"></button>
|
|
60
|
+
<button class="btn btn-ghost btn-secondary"></button>
|
|
61
|
+
<button class="btn btn-ghost btn-accent"></button>
|
|
62
|
+
<button class="btn btn-ghost btn-info"></button>
|
|
63
|
+
<button class="btn btn-ghost btn-success"></button>
|
|
64
|
+
<button class="btn btn-ghost btn-warning"></button>
|
|
65
|
+
<button class="btn btn-ghost btn-error"></button>
|
|
66
|
+
<!-- Link -->
|
|
67
|
+
<button class="btn btn-link btn-primary"></button>
|
|
68
|
+
<button class="btn btn-link btn-secondary"></button>
|
|
69
|
+
<button class="btn btn-link btn-accent"></button>
|
|
70
|
+
<button class="btn btn-link btn-info"></button>
|
|
71
|
+
<button class="btn btn-link btn-success"></button>
|
|
72
|
+
<button class="btn btn-link btn-warning"></button>
|
|
73
|
+
<button class="btn btn-link btn-error"></button>
|
|
74
|
+
<!-- Shapes -->
|
|
75
|
+
<button class="btn btn-wide"></button>
|
|
76
|
+
<button class="btn btn-circle"></button>
|
|
77
|
+
<button class="btn btn-square"></button>
|
|
78
|
+
<button class="btn btn-block"></button>
|
|
79
|
+
|
|
80
|
+
<!-- Tabs -->
|
|
81
|
+
<div class="tabs tabs-border"></div>
|
|
82
|
+
<div class="tabs tabs-box"></div>
|
|
83
|
+
<div class="tabs tabs-lift"></div>
|
|
84
|
+
|
|
85
|
+
<!-- Tooltips -->
|
|
86
|
+
<button class="tooltip tooltip-primary"></button>
|
|
87
|
+
<button class="tooltip tooltip-secondary"></button>
|
|
88
|
+
<button class="tooltip tooltip-accent"></button>
|
|
89
|
+
<button class="tooltip tooltip-info"></button>
|
|
90
|
+
<button class="tooltip tooltip-success"></button>
|
|
91
|
+
<button class="tooltip tooltip-warning"></button>
|
|
92
|
+
<button class="tooltip tooltip-error"></button>
|
|
@@ -1,21 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wagtail-tw-blocks
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: A collection of reusable, production-ready content blocks for Wagtail CMS, styled with Tailwind CSS and daisyUI.
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: LICENSE
|
|
7
7
|
Author: Yousef Abu Shanab
|
|
8
8
|
Author-email: josephyousef249@gmail.com
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.11
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.12
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.14
|
|
17
16
|
Requires-Dist: django (>=5.2.1)
|
|
18
|
-
Requires-Dist: wagtail (>=7.
|
|
17
|
+
Requires-Dist: wagtail (>=7.2)
|
|
19
18
|
Project-URL: Documentation, https://github.com/youzarsiph/wagtail-tw-blocks
|
|
20
19
|
Project-URL: Homepage, https://github.com/youzarsiph/wagtail-tw-blocks
|
|
21
20
|
Project-URL: Repository, https://github.com/youzarsiph/wagtail-tw-blocks
|
|
@@ -29,7 +28,6 @@ Description-Content-Type: text/markdown
|
|
|
29
28
|
[](https://github.com/youzarsiph/wagtail-tw-blocks/actions/workflows/ruff.yml)
|
|
30
29
|
[](https://pypi.org/project/wagtail-tw-blocks/)
|
|
31
30
|
[](https://pypi.org/project/wagtail-tw-blocks/)
|
|
32
|
-
[](https://pypi.org/project/wagtail-tw-blocks/)
|
|
33
31
|
[](https://pypi.org/project/wagtail-tw-blocks/)
|
|
34
32
|
|
|
35
33
|
## Overview
|
|
@@ -38,6 +36,14 @@ Description-Content-Type: text/markdown
|
|
|
38
36
|
|
|
39
37
|
---
|
|
40
38
|
|
|
39
|
+
## Key features
|
|
40
|
+
|
|
41
|
+
- **Modern design:** Tailwind CSS + daisyUI styling for clean, responsive layouts.
|
|
42
|
+
- **Multiple themes:** All daisyUI themes included, with easy customization.
|
|
43
|
+
- **CI/CD:** GitHub Actions pipelines for automated testing and deployment.
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
41
47
|
## Demo
|
|
42
48
|
|
|
43
49
|
[](https://youtu.be/0b0dZByyPok)
|
|
@@ -94,7 +100,7 @@ You can customize the behavior of `wagtail-tw-blocks` by adding the following se
|
|
|
94
100
|
# project/settings.py
|
|
95
101
|
|
|
96
102
|
# Extend or override the default programming languages for the CodeBlock
|
|
97
|
-
|
|
103
|
+
WB_CODE_BLOCK_PROGRAMMING_LANGUAGES = [
|
|
98
104
|
('python', 'Python'),
|
|
99
105
|
('javascript', 'JavaScript'),
|
|
100
106
|
('html', 'HTML'),
|
|
@@ -108,14 +114,17 @@ WAGTAIL_BLOCKS_PROGRAMMING_LANGUAGES = [
|
|
|
108
114
|
# ...
|
|
109
115
|
]
|
|
110
116
|
|
|
117
|
+
# Show or hide the header the CodeBlock
|
|
118
|
+
WB_CODE_BLOCK_SHOW_HEADER = True # Default is True
|
|
119
|
+
|
|
111
120
|
# Show or hide the programming language label in the CodeBlock
|
|
112
|
-
|
|
121
|
+
WB_CODE_BLOCK_SHOW_PROGRAMMING_LANGUAGE = True # Default is True
|
|
113
122
|
|
|
114
123
|
# Show or hide the copy button in the CodeBlock
|
|
115
|
-
|
|
124
|
+
WB_CODE_BLOCK_SHOW_COPY_BUTTON = True # Default is True
|
|
116
125
|
|
|
117
126
|
# Show or hide window control buttons in the CodeBlock
|
|
118
|
-
|
|
127
|
+
WB_CODE_BLOCK_SHOW_WINDOW_CONTROLS = True # Default is True
|
|
119
128
|
```
|
|
120
129
|
|
|
121
130
|
---
|
|
@@ -153,47 +162,34 @@ class Article(Page):
|
|
|
153
162
|
|
|
154
163
|
```html
|
|
155
164
|
<!-- blog/base.html -->
|
|
156
|
-
|
|
157
165
|
<!doctype html>
|
|
158
|
-
|
|
159
|
-
<html data-theme="luxury">
|
|
166
|
+
<html>
|
|
160
167
|
<head>
|
|
161
168
|
<meta charset="UTF-8" />
|
|
162
169
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
163
170
|
<title>Wagtail Blocks Usage Example</title>
|
|
164
171
|
|
|
165
|
-
<!--
|
|
166
|
-
Do not use in production.
|
|
167
|
-
See:
|
|
168
|
-
- https://tailwindcss.com/docs/installation
|
|
169
|
-
-->
|
|
170
|
-
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
|
|
171
|
-
<link href="https://cdn.jsdelivr.net/npm/daisyui@5/themes.css" rel="stylesheet" type="text/css" />
|
|
172
|
-
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
|
173
|
-
|
|
174
172
|
<!-- Code highlighting for CodeBlock -->
|
|
175
|
-
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
|
|
176
173
|
<link
|
|
177
174
|
rel="stylesheet"
|
|
178
175
|
href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/github-dark.min.css"
|
|
179
176
|
/>
|
|
177
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
|
|
180
178
|
<script>hljs.highlightAll();</script>
|
|
181
|
-
|
|
182
|
-
<!--
|
|
179
|
+
|
|
180
|
+
<!-- Include stylesheet -->
|
|
183
181
|
{% load static %}
|
|
184
182
|
<link href="{% static 'wagtail_blocks/css/styles.css' %}" rel="stylesheet" type="text/css" />
|
|
185
183
|
</head>
|
|
186
184
|
|
|
187
185
|
<body>
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
<main class="prose mx-auto prose-sm prose-video:rounded-box xl:prose-lg 2xl:prose-xl prose-headings:text-primary prose-img:rounded-box prose-img:w-full">
|
|
193
|
-
{{ article.content }}
|
|
186
|
+
<main>
|
|
187
|
+
<h1>{{ article.title }}</h1>
|
|
188
|
+
|
|
189
|
+
<div>{{ article.content }}</div>
|
|
194
190
|
</main>
|
|
195
191
|
|
|
196
|
-
<!-- Lucide icons -->
|
|
192
|
+
<!-- Lucide icons: https://lucide.dev/icons/ -->
|
|
197
193
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
198
194
|
<script>lucide.createIcons();</script>
|
|
199
195
|
|
|
@@ -206,22 +202,9 @@ class Article(Page):
|
|
|
206
202
|
|
|
207
203
|
---
|
|
208
204
|
|
|
209
|
-
## Key features
|
|
210
|
-
|
|
211
|
-
- **Modern design:** Tailwind CSS + daisyUI styling for clean, responsive layouts.
|
|
212
|
-
- **Multiple themes:** All daisyUI themes included, with easy customization.
|
|
213
|
-
- **CI/CD:** GitHub Actions pipelines for automated testing and deployment.
|
|
214
|
-
- **Dependency management:** Poetry for reproducible, maintainable installs.
|
|
215
|
-
- **Code formatting:** Black for consistent, automatic formatting.
|
|
216
|
-
- **Linting:** Ruff for fast, comprehensive linting.
|
|
217
|
-
- **Testing:** Django test runner for unit and integration tests.
|
|
218
|
-
- **Starter configs:** `.gitignore`, `pyproject.toml`, and other essentials included.
|
|
219
|
-
|
|
220
|
-
---
|
|
221
|
-
|
|
222
205
|
## Extending
|
|
223
206
|
|
|
224
|
-
You can easily extend or customize the provided blocks by
|
|
207
|
+
You can easily extend or customize the provided blocks by sub-classing them. For example, to create a custom alert block with additional styles:
|
|
225
208
|
|
|
226
209
|
```python
|
|
227
210
|
from wagtail_blocks import blocks
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
wagtail_blocks/__init__.py,sha256=qGVWunorLY4__p9PZq4GO5tH3b2V0pm_Jevp17yMA00,1457
|
|
2
2
|
wagtail_blocks/apps.py,sha256=tOZ8btDhg8nCbNbbjTr6N4MQUEuC600is3PN-ufHJcU,300
|
|
3
|
-
wagtail_blocks/blocks.py,sha256=
|
|
4
|
-
wagtail_blocks/locale/ar/LC_MESSAGES/django.po,sha256=
|
|
5
|
-
wagtail_blocks/locale/cn/LC_MESSAGES/django.po,sha256=
|
|
6
|
-
wagtail_blocks/locale/de/LC_MESSAGES/django.po,sha256=
|
|
7
|
-
wagtail_blocks/locale/es/LC_MESSAGES/django.po,sha256=
|
|
8
|
-
wagtail_blocks/locale/fr/LC_MESSAGES/django.po,sha256=
|
|
9
|
-
wagtail_blocks/locale/tr/LC_MESSAGES/django.po,sha256=
|
|
3
|
+
wagtail_blocks/blocks.py,sha256=rQEu9bZHxNcQpno2Cp6GCP2fJWf3oN6zw2GzfS9h_IY,16759
|
|
4
|
+
wagtail_blocks/locale/ar/LC_MESSAGES/django.po,sha256=1OpxIFu1kc5qESVP6cY6jpNS6rS11XqI88qJPbXFBlg,11540
|
|
5
|
+
wagtail_blocks/locale/cn/LC_MESSAGES/django.po,sha256=bLLPanEQaTW-FYsznbTuOVd-FnWXizgvMjkGLU1N3M8,10180
|
|
6
|
+
wagtail_blocks/locale/de/LC_MESSAGES/django.po,sha256=1n_xdo9vlafI5tJC2eAF60uC0dmjiI4msbXyk5f4Nmk,10580
|
|
7
|
+
wagtail_blocks/locale/es/LC_MESSAGES/django.po,sha256=qaWdqiaNcbgj2Z710rT1ataO6jsFh63JFGlk46_U6U4,10910
|
|
8
|
+
wagtail_blocks/locale/fr/LC_MESSAGES/django.po,sha256=nHEp_ryP4ZgN2WmIJ9cjXqyJGpZC3VEYWOlMXLAX4Tw,11011
|
|
9
|
+
wagtail_blocks/locale/tr/LC_MESSAGES/django.po,sha256=Z-0ZP_vraffI4gk-QZgfQ5qAncBb0HFd1tO2ONk70CM,10776
|
|
10
10
|
wagtail_blocks/static/wagtail_blocks/.prettierrc,sha256=GyU5YqXRkB3eeDxAGhpB3jYr_WU3MHW4p60vg_HmoUU,90
|
|
11
11
|
wagtail_blocks/static/wagtail_blocks/README.md,sha256=8gnnrxo9Ex_Tsn_XqiO-S04CW9uMP5uFc_XWfem72h4,427
|
|
12
12
|
wagtail_blocks/static/wagtail_blocks/css/app.css,sha256=Y0GHo4GTmQsQookSvtzn9FJSbcfVz96CFPcMA4LtL6I,77
|
|
13
|
-
wagtail_blocks/static/wagtail_blocks/css/styles.css,sha256=
|
|
14
|
-
wagtail_blocks/static/wagtail_blocks/package-lock.json,sha256=
|
|
15
|
-
wagtail_blocks/static/wagtail_blocks/package.json,sha256=
|
|
16
|
-
wagtail_blocks/templates/wagtail_blocks/blocks/accordion.html,sha256=
|
|
17
|
-
wagtail_blocks/templates/wagtail_blocks/blocks/alert.html,sha256=
|
|
13
|
+
wagtail_blocks/static/wagtail_blocks/css/styles.css,sha256=43wgx_EEJ2T3SccwlfQ6PUHJhduYxkuIlcOctAyVExk,116897
|
|
14
|
+
wagtail_blocks/static/wagtail_blocks/package-lock.json,sha256=hgc6CNJOmIa3k_pN_Kjw_xxeLr5ejENOIpxyiZIPmGk,44828
|
|
15
|
+
wagtail_blocks/static/wagtail_blocks/package.json,sha256=UO88icSn3xa__dXZSxB9Hxr36O7_pqlB_RCQa_78tfw,259
|
|
16
|
+
wagtail_blocks/templates/wagtail_blocks/blocks/accordion.html,sha256=a5qpl0QT-xrYrutXKaClQCrrbJzb4MYBQ0W0CWvGj1Y,1519
|
|
17
|
+
wagtail_blocks/templates/wagtail_blocks/blocks/alert.html,sha256=uxmkHskzqXvt5SdxP-L7vbNh7drceStSenpnxnRHPV0,796
|
|
18
18
|
wagtail_blocks/templates/wagtail_blocks/blocks/browser.html,sha256=377dESgmWidAz-eKjz1PWBFQua7aCiE0tP1sbeXGHEo,400
|
|
19
19
|
wagtail_blocks/templates/wagtail_blocks/blocks/carousel.html,sha256=PO2QF6L--I-YCUAVARrggqjztoisyhJnF76pc8ywX4A,2001
|
|
20
|
-
wagtail_blocks/templates/wagtail_blocks/blocks/code.html,sha256=
|
|
20
|
+
wagtail_blocks/templates/wagtail_blocks/blocks/code.html,sha256=sNNNhsxR8qOzmB27wXQtrQlL9QPsWo70EWD97R7wq3Y,2162
|
|
21
21
|
wagtail_blocks/templates/wagtail_blocks/blocks/code_mockup.html,sha256=ffl7vWFkR_hWh96GfsqIcl7dhcYj6wjgg8MbFviTwOo,637
|
|
22
22
|
wagtail_blocks/templates/wagtail_blocks/blocks/diff.html,sha256=Z1QuQIEbS-D86Uvv2y607C0i_V3k6FYQAkJEx7a5zt8,419
|
|
23
23
|
wagtail_blocks/templates/wagtail_blocks/blocks/fab.html,sha256=Brr-te1a99Lumj8yeNInaDGlX6XlNqE9p3Jn--hKsvk,1487
|
|
@@ -26,11 +26,12 @@ wagtail_blocks/templates/wagtail_blocks/blocks/image.html,sha256=7U3rz55K2Fy49uM
|
|
|
26
26
|
wagtail_blocks/templates/wagtail_blocks/blocks/list.html,sha256=MnOJ7JY4dKTe6jeUZHD7xbLKmP_xgGy9fLxlOkVce1Q,1660
|
|
27
27
|
wagtail_blocks/templates/wagtail_blocks/blocks/phone.html,sha256=28i0jvs0fSdxFIFSFdCODsiuYluk7rRdonmbtnAbva0,333
|
|
28
28
|
wagtail_blocks/templates/wagtail_blocks/blocks/steps.html,sha256=tsyT1vQU0YM5tAoy0TRpqVnU4GReXxio10h6970Dh4o,406
|
|
29
|
-
wagtail_blocks/templates/wagtail_blocks/blocks/tabs.html,sha256=
|
|
29
|
+
wagtail_blocks/templates/wagtail_blocks/blocks/tabs.html,sha256=raxO1nNfhVCG4bbCP5Ov1ilyNYWSXyUmj8AkEqaJ2EU,730
|
|
30
30
|
wagtail_blocks/templates/wagtail_blocks/blocks/timeline.html,sha256=EcL0L6H1UZlMk0emMucNeLCPpkkhKBzQqFf0do2m9MM,853
|
|
31
31
|
wagtail_blocks/templates/wagtail_blocks/blocks/toast.html,sha256=sE6bdgwgg15G-5qUsaA2T0ixfRcK5_bCzbfqKc0-WyU,192
|
|
32
32
|
wagtail_blocks/templates/wagtail_blocks/blocks/window.html,sha256=sw6GqkU32J9pOZ5WQsLubSBicZBnjxNDKPK2Drx7aBQ,244
|
|
33
|
-
|
|
34
|
-
wagtail_tw_blocks-0.
|
|
35
|
-
wagtail_tw_blocks-0.
|
|
36
|
-
wagtail_tw_blocks-0.
|
|
33
|
+
wagtail_blocks/templates/wagtail_blocks/styles.html,sha256=PCecVvYDEUM8ooSjTbycswSrFIwEy208cpCfOhdOONs,3779
|
|
34
|
+
wagtail_tw_blocks-0.3.1.dist-info/METADATA,sha256=bsxwG7dJPeLVBl2srXA1mCLTLwXyDu8PQJqMDgI0Emc,7990
|
|
35
|
+
wagtail_tw_blocks-0.3.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
36
|
+
wagtail_tw_blocks-0.3.1.dist-info/licenses/LICENSE,sha256=RkaGOqhDfc5U9-5mc3OHBMOo1VW7UOb8JQ614C0kqm4,1074
|
|
37
|
+
wagtail_tw_blocks-0.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|