File tree 4 files changed +32
-2
lines changed
4 files changed +32
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,21 @@ Allows you to build forms in the CMS admin area and add them to any StreamField
7
7
You can create your own types of forms meaning an endless array of possibilities. Templates can be created
8
8
which will then appear as choices when you build your form, allowing you to display and submit a form however you want.
9
9
10
+ Backwards Compatibility
11
+ -----------------------
12
+
13
+ If you are using a version of wagtail 1.x, then the latest compatible version of this package is 1.6.3:
14
+
15
+ .. code :: bash
16
+
17
+ $ pip install wagtailstreanforms< 2
18
+
19
+ Other wise you must install a version of this package from 2 onwards:
20
+
21
+ .. code :: bash
22
+
23
+ $ pip install wagtailstreanforms> =2
24
+
10
25
What else is included?
11
26
----------------------
12
27
Original file line number Diff line number Diff line change @@ -10,6 +10,21 @@ Allows you to build forms in the CMS admin area and add them to any StreamField
10
10
You can create your own types of forms meaning an endless array of possibilities. Templates can be created
11
11
which will then appear as choices when you build your form, allowing you to display and submit a form however you want.
12
12
13
+ Backwards Compatibility
14
+ -----------------------
15
+
16
+ If you are using a version of wagtail 1.x, then the latest compatible version of this package is 1.6.3:
17
+
18
+ .. code :: bash
19
+
20
+ $ pip install wagtailstreanforms< 2
21
+
22
+ Other wise you must install a version of this package from 2 onwards:
23
+
24
+ .. code :: bash
25
+
26
+ $ pip install wagtailstreanforms> =2
27
+
13
28
What else is included?
14
29
----------------------
15
30
Original file line number Diff line number Diff line change 10
10
install_requires = [
11
11
'Django>=2,<2.1' ,
12
12
'django-recaptcha>=1.3.1' ,
13
- 'wagtail>=2.0b1 ,<2.1'
13
+ 'wagtail>=2,<2.1'
14
14
]
15
15
16
16
documentation_extras = [
Original file line number Diff line number Diff line change 10
10
mock
11
11
12
12
dj200: Django>=2,<2.1
13
- wt200: wagtail>=2.0b1 ,<2.1
13
+ wt200: wagtail>=2,<2.1
14
14
15
15
commands =
16
16
coverage erase
You can’t perform that action at this time.
0 commit comments