0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 17:36:49 +01:00
Commit Graph

13597 Commits

Author SHA1 Message Date
Matt Westcott
f9fe6d0ca8 Documentation for generating chooser blocks via ChooserViewSet 2022-08-10 14:53:41 +10:00
Matt Westcott
252f9dcc1f Use ChooserViewSet to generate DocumentChooserBlock 2022-08-10 14:53:41 +10:00
Matt Westcott
161dd69c8a Implement generating a StreamField ChooserBlock from ChooserViewSet 2022-08-10 14:53:41 +10:00
Matt Westcott
316493873f Allow specifying target_model on ChooserBlock subclasses as a string 2022-08-10 14:53:41 +10:00
Matt Westcott
b10acebd31 Replace ChooserBlock get_form_state methods with a base implementation that delegates to the widget 2022-08-10 14:53:41 +10:00
Matt Westcott
90e91e0e4a Consistently use edit_url in the state representation of choosers
Previously we were using edit_link in dicts handled by JS, and edit_url in dicts handled by Python, meaning that ChooserBlock.get_form_state had to rewrite it
2022-08-10 14:53:41 +10:00
Matt Westcott
0077183682 Add a base class for Telepath adapters for chooser widgets 2022-08-10 14:53:41 +10:00
Matt Westcott
d4c146ad01 Add a base class for chooser factories 2022-08-10 14:53:41 +10:00
Sage Abdullah
ac4220d88e Add tests for snippets list view ordering 2022-08-09 13:01:50 +01:00
Sage Abdullah
615c1e0744 Ensure ordering null values in Updated column is consistent across databases 2022-08-09 13:01:50 +01:00
Sage Abdullah
2d576c72b9 Use gettext_lazy for translatable Snippet view class attributes 2022-08-09 13:01:50 +01:00
Sage Abdullah
5bcaadd448 Allow sorting by Updated and Status columns in generic IndexView 2022-08-09 13:01:50 +01:00
Sage Abdullah
569fef968f Allow sorting columns in snippet model index view 2022-08-09 13:01:50 +01:00
Sage Abdullah
f322e9d868 Improve Snippets listing styles 2022-08-09 13:01:50 +01:00
Sage Abdullah
9476f677fc Enforce bulk action checkbox column to be 50px 2022-08-09 13:01:50 +01:00
Sage Abdullah
4f83cbb1b6 Use generic IndexView and tables framework for snippets model index view 2022-08-09 13:01:50 +01:00
Sage Abdullah
89fb9df3b7 Bring back snippet listing buttons 2022-08-09 13:01:50 +01:00
Sage Abdullah
80d15637d8 Use tables component in snippets listing view 2022-08-09 13:01:50 +01:00
Sage Abdullah
fd8d57a0ea Sort objects in descending order by updated_at and pk 2022-08-09 13:01:50 +01:00
Sage Abdullah
0cae35496c Resolve updated_at value from the database-level 2022-08-09 13:01:50 +01:00
Sage Abdullah
ed87aa053e Add default title, updated at, and status columns to generic IndexView 2022-08-09 13:01:50 +01:00
Sage Abdullah
25e753e64d Add BulkActionsCheckboxColumn component 2022-08-09 13:01:50 +01:00
Sage Abdullah
613f71837b Add StatusTagColumn component 2022-08-09 13:01:50 +01:00
Akash-Kumar-Sen
46bb760319 Ensure page explorer header item aligns with toggle on sm device
- fixes #8939
2022-08-09 21:29:20 +10:00
Akash Kumar Sen
71dfb4090b fix overlapping of report filters/table & form submissions
- as of 3.0 - report filters would overflow the viewport in Wagtail
- fix layout issue with form submission lists introduced with filtering changes
- remove invalid css grid-column-start (unused)
- adopt theme variables for all main spacing instead of hard-coded em/rem/px values
- fixes #8929
2022-08-08 22:05:01 +10:00
tijani
61f6aeeb1a Add path & re_path pattern types for RoutablePageMixin
* Modified route decorator so it adds new route to view depending on pattern type; default to path
* Made a separate decorator
* Renamed route to path and updated RoutablePage models
* Added a check to warn user when using regex with path decorator
* Made @route alias of @re_path, added tests for @re_path
* resolves #7031
2022-08-08 20:09:38 +10:00
anujaraj
3576e27ab0 added border to tooltip dropdown for high contrast & fix arrow
- fixes #8830
2022-08-06 23:07:01 +10:00
LB Johnston
c731369bfe changelog - add additional fix mapped against #8925 2022-08-06 22:13:05 +10:00
LB Johnston
c9248725e2 add changelog for #8948 2022-08-06 21:56:48 +10:00
Andy Chosak
722e292d63 Add testing against MySQL / Django 4.1.x 2022-08-06 21:54:32 +10:00
Andy Chosak
433bcc9124 Fix MySQL search on Django 4.1
In Django 4.0, a search match expression would produce this SQL WHERE
clause:

WHERE ... MATCH (`title`, `body`) AGAINST (query IN BOOLEAN MODE)

In Django 4.1, this behavior was changed:

https://code.djangoproject.com/ticket/32691
407fe95cb1

so that instead this SQL WHERE clause is generated, explicitly
filtering against "= True":

WHERE ... MATCH (`title`, `body`) AGAINST (query IN BOOLEAN MODE) = True

This no longer works properly because MATCH returns a floating point
score as a measurement of the match quality, not a boolean value:

https://dev.mysql.com/doc/refman/8.0/en/fulltext-boolean.html

In order for filtering on "= True" to work, this commit changes the
match expression SQL to be:

WHERE ... CASE WHEN MATCH (`title`, `body`) AGAINST (query IN BOOLEAN MODE) THEN True ELSE False END = True
2022-08-06 21:54:32 +10:00
LB Johnston
c8713f1dab add contributor name for #8950 2022-08-06 21:42:10 +10:00
LB Johnston
573da5d307 login/password form - styling fix for #8925 2022-08-06 21:37:42 +10:00
Akash-Kumar-Sen
827bcf3dbf Documentation - improve organisation of settings reference #8950
- fixes #8863
2022-08-06 21:20:22 +10:00
LB Johnston
167b4c9302 changelog entry for #8925 2022-08-06 19:06:19 +10:00
PaarthAgarwal
d2529cad92 Restyling all log in & password reset flow pages
- add id=main to all login flow form templates for non-JS skip link usage
- remove inline script to focus on username field in login form
- adopt a consistent DOM layout for all log in & password reset flow forms
- ensure h1 is at the top of the DOM in all forms
- add wagtail logo to sign in form and document the ability to override it
- fixes #2309
2022-08-06 19:06:19 +10:00
PaarthAgarwal
61cc487add remove unused change password template 2022-08-06 19:06:19 +10:00
Thibaud Colas
eac5e0bc2c Finish re-implementing form styles based on design feedback & code review
Co-authored-by: LB Johnston <mail@lb.ee>
2022-08-05 10:36:52 +02:00
Thibaud Colas
3d96e7fbe7 Implement collapsible and linkable panels
Co-authored-by: LB Johnston <mail@lb.ee>
2022-08-05 10:36:52 +02:00
Thibaud Colas
af9b16e93d Re-implement base form field styles based on new page editor designs
Co-authored-by: LB Johnston <mail@lb.ee>
2022-08-05 10:36:52 +02:00
Matt Westcott
5521e3b59f Update panel templates for new designs (EditHandler rewrite)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2022-08-05 10:36:52 +02:00
LB Johnston
3b84559b0f add changelog for #8855 2022-08-05 08:34:14 +10:00
Matt Westcott
c4d6c7d6c5 Add docs for DRF-based choosers 2022-08-05 08:34:14 +10:00
Matt Westcott
19a7708c7c Split out a get_results_page method from chooser view
This allows us to override this logic to swap in data sources that have built-in pagination.
2022-08-05 08:34:14 +10:00
Matt Westcott
02d836fe3e Make per_page configurable on viewsets 2022-08-05 08:34:14 +10:00
Matt Westcott
6a881e0a5d Hide 'Edit this item' link from chooser widget if edit_url is not supplied 2022-08-05 08:34:14 +10:00
Matt Westcott
ecefdd2850 Add an id_accessor property to TitleColumn
This allows the linked instance to be something that doesn't expose a `.pk` property, like a dict from a DRF response, while keeping the `get_link_url` mechanism
2022-08-05 08:34:14 +10:00
Matt Westcott
c6d0f12cd8 Make chooser viewsets / widgets work without specifying a model
Specific methods such as get_object_list will need to be overridden in that case, but these changes ensure it won't fail outright at import time
2022-08-05 08:34:14 +10:00
Matt Westcott
89e2917b91 Support passing model to chooser viewset / views / widgets as a string 2022-08-05 08:34:14 +10:00
LB Johnston
a40b82fc05 add changelog for #8625 2022-08-05 07:41:15 +10:00