Kyle J. Roux
844efa696a
Ensure thumb_col_header_text is used by ThumbnailMixin correctly
...
- fixes #8269
because you cannot dynamically set attributes on bound methods, we need to update the current classes version of admin_thumb so it can be accessed in sub classes
2022-04-08 00:23:45 +10:00
Hitansh Shah
0b8a8c2024
Added image management command to purge and regenerate renditions
...
- resolves #8107
2022-04-07 23:57:44 +10:00
eevel
1c7c5cfc0b
Allow specifying an alternative storage backend for image renditions
...
- add setting `WAGTAILIMAGES_RENDITION_STORAGE`
- add AbstractRendition file storage to use new setting
- resolves #3183
2022-04-07 23:33:46 +10:00
Caio Jhonny
21202e421e
Add missing import django models ( #8301 )
...
Django models need to be imported
2022-04-07 12:18:37 +01:00
Sandil Ranasinghe
cb7fc4cb14
Rename BASE_URL to WAGTAILADMIN_BASE_URL & add docs
...
- add documentation for WAGTAILADMIN_BASE_URL
- ensure that WAGTAILADMIN_BASE_URL is used via a util so that it can fallback from request
- resolves #3248
- remove settings URL from pagination template - not required for query string URLs
2022-04-06 19:43:46 +10:00
Abdul
9007bda686
documentation - add admin tag manager doc
...
- add documentation that describes how to use `ModelAdmin` to manage tags
- resolves #1220
2022-04-06 07:21:34 +10:00
ShwetKhatri2001
177f005a20
documentation - migrate editor's guide to markdown from RST
...
- resolves #8106
2022-04-06 06:48:43 +10:00
Matt Westcott
0946e5d5b7
add Vinit Kumar to contributors
2022-04-05 14:55:57 +01:00
talkshrey
7f7fd15831
docs - fix spacing added between -m and http command
...
- see #8257
2022-04-03 22:12:04 +10:00
anujaraj
f3720a7652
Fix missing translations in workflow templates
...
- fixes #8214
- see #8240 & #8238
2022-04-03 22:03:50 +10:00
James Ray
2cae3083f5
Add missing lang
attributes to <html>
elements. Fix #8212 ( #8220 )
...
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2022-04-01 23:50:47 +01:00
Matt Westcott
b159404413
Update Saurabh kumar's name
2022-04-01 20:55:16 +01:00
Matt Westcott
30ad2ee217
Add Saurabh to contributors
2022-04-01 17:14:15 +01:00
Thibaud Colas
c2231530a5
Update core team alumni list
2022-04-01 12:19:57 +01:00
Hitansh Shah
a8106e5072
Added lint-server, lint-client, format-server and format-client tasks to the Makefile ( #8177 )
2022-03-30 14:14:30 +01:00
Luis Espinoza
b53017ad94
remove redundant role="main" for <main>
2022-03-26 12:03:35 -07:00
Stephanie Smith
e726c5004f
Fixing translations for 'Title' in listing templates ( #8218 )
...
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2022-03-26 16:44:59 +00:00
Kyle Hart
3fabe10d5c
Remove Spacing section from CSS guidelines ( #8216 )
...
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
Removed Spacing section. It’s no longer relevant because we’re now using Prettier.
2022-03-26 15:56:44 +00:00
Dharma-09
d0133d5fce
Add Pinterest embed support
...
- resolves #5471
2022-03-24 08:10:17 +10:00
Mariusz Felisiak
7b4cf43e2e
Removed outdated handling of length parameter to If-Modified-Since header
...
- The length parameter is not described in RFC-7232 and it's against HTTP/1.0 and HTTP/1.1 specifications.
- It was an old and unofficial extension set by some ancient versions of IE.
- See https://httpwg.org/specs/rfc7232.html#header.if-modified-since
- https://github.com/django/django/pull/15500
2022-03-23 08:36:39 +10:00
Riley
074ea8c416
prevent page refresh on enter key in header seach
...
- resolves #3746
- add a hidden & disabled first submit input so that ‘enter’ does not trigger submit
- allow the behaviour of the actual submit button to still work as expected
- intentionally HTML only solution as it is simpler and more accessible than JS override
2022-03-18 22:33:47 +10:00
nmorduch
e748b1f51a
Update core team & alumni list
...
- Add Tim Allen and Vince Salvino to the core team list
- Update Dawn's affiliation to Wharton
- Move Andy Babic and Bertrand Bordage to alumni list
- Add Michael van Tellingen to the alumni list
2022-03-16 21:13:48 +10:00
p0lygun
fda36c7343
Documentation - convert advanced topics docs to markdown
2022-03-16 20:48:03 +10:00
Nicolas Ferrari
11e7936562
Add alwaysdata among Cloud providers in documentation ( #8070 )
...
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2022-03-15 12:29:59 +00:00
PaarthAgarwal
6a84cf4583
Switch focus outlines implementation to :focus-visible
for cross-browser consistency. Fix #7994 ( #8113 )
...
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2022-03-15 11:33:12 +00:00
Sage Abdullah
bf8d5b3f94
Replace data_json
TextField
with data
JSONField
in BaseLogEntry
2022-02-28 10:27:07 +00:00
Gianluca De Cola
aaee9b8c81
Remove IE11 warning message and related files
...
- resolves #7993
2022-02-22 17:22:39 +10:00
Joshua Munn
b8405e9ca8
Add unsaved fields to FormBuilder.formfields with clean name as key
...
fixes #6555 ,
Only the final unsaved FormField appears in the preview of a FormPage. As
FormBuilder adds fields to its formfields attribute using their
clean_name as the key, and FormField.clean_name isn't populated until
FormField.save is called, all unsaved fields are added to the
FormBuilder.formfields dict with the empty string as key. This solves
this by calling get_field_clean_name on the field before insertion
into formfields if clean_name hasn't been set yet.
2022-02-22 17:09:37 +10:00
Dennis McGregor
1bbf952453
Apply unlocalize filter to bulk action object ids
...
- Bulk Actions were failing for objects with id > 999 in projects with
- Django settings `USE_L10N` and `USE_THOUSAND_SEPARATOR` enabled.
- Test bulk action checkboxes handle USE_THOUSAND_SEPARATOR setting
2022-02-10 19:34:00 +10:00
Matt Westcott
475295d7b8
Fetch new translations from Transifex
2022-01-28 13:42:21 +00:00
Matt Westcott
92a323231f
Add release notes for 2.11.9
2022-01-24 16:10:59 +00:00
Matt Westcott
cd6bc70d9d
Fetch new translations from Transifex
2022-01-21 13:54:59 +00:00
Karl Hobley
533e85c8d1
Changelog / Release notes for #7862 and #7875
2022-01-20 14:07:47 +00:00
Wicked
88c7d46282
Improve the visibility of field error messages, in Windows high-contrast mode and out ( #7663 ) Fix #7241
...
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2022-01-13 06:46:35 +00:00
thoang43
3651e5f21b
Add draftail padding to fix cut off ol items
...
- fixes #7019
2022-01-08 21:44:11 +10:00
LB Johnston
4b91d6b7ee
Add changelog for #7778 (2.15.2)
...
- relates to fix for #7768
2022-01-08 21:18:25 +10:00
Matt Westcott
93229cfc14
Release note / fixed test for #7801
2022-01-05 15:35:19 +00:00
LB Johnston
75bf48d9f7
fix contributor name for #7748 & #7745
2021-12-07 07:20:11 +10:00
FahimFBA
66237d09e7
Add links to README.md
file for Who's using it section
2021-12-03 06:34:31 +10:00
Karl Hobley
4803133fee
Changelogs/release notes/contributors for #7385 #7669 #7704
2021-12-02 13:47:52 +00:00
JS
40e6e1c803
Docs - Update API configuration example
...
Code correction - date format was incorrect.
2021-11-30 07:58:13 +10:00
Matt Westcott
1209c5e481
Fetch new translations from Transifex
2021-11-11 12:45:29 +00:00
Matt Westcott
e24fbc23a8
Fetch new translations from Transifex
2021-11-04 11:21:08 +00:00
Matt Westcott
24b99a5ebc
Fetch new translations from Transifex
2021-10-28 14:38:19 +01:00
Thibaud Colas
f819d975dc
Add dedicated release notes section for Windows high contrast mode support ( #7618 )
2021-10-15 17:51:19 +01:00
Shariq Jamil
c4422b2bec
add border to comments dropdown
...
- for windows high contrast mode
- fixes #7458
2021-10-15 23:25:09 +10:00
LB Johnston
196a368cdc
add contributors for #7588
2021-10-13 17:54:04 +10:00
indreshp135
6e90c877ec
fix issue with __prefix__ in nested inline panel
...
changed following:
change only first __prefix__ when multiple __prefix__ are present in
same name when orderable and blocks are nested
Co-authored-by: anirudhvs <54744932+anirudhvs@users.noreply.github.com>
Co-authored-by: CaptainIRS <36656347+CaptainIRS@users.noreply.github.com>
- fixes #7587
- fixes #5770
2021-10-13 07:37:27 +10:00
Sakshi Uppoor
da1e4d9a99
Fix toggle switch bug in high-contrast mode ( #7561 )
...
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2021-10-08 22:32:55 +01:00
Matt Westcott
5465d2e11b
Fetch new translations from Transifex
2021-10-01 13:41:47 +01:00