Jon Dufresne
|
ad9a28ee38
|
Refs #29784 -- Normalized Python docs links to omit the version.
|
2018-09-25 10:19:42 +02:00 |
Tim Graham
|
fd8a7a5313
|
Fixed #29723 -- Fixed crash if InlineModelAdmin.has_add_permission() doesn't accept the obj argument.
* Refs #27991 -- Added testing for ModelAdmin.get_inline_instances() if the inline's has_add_permission() doesn't accept 'obj'.
* Fixed #29723 -- Fixed crash if InlineModelAdmin.has_add_permission() doesn't accept the obj argument.
|
2018-08-30 11:22:50 +02:00 |
Claude Paroz
|
50b8493581
|
Refs #29654 -- Replaced three dots with ellipsis character in output strings.
|
2018-08-22 09:13:58 -04:00 |
Claude Paroz
|
201017df30
|
Fixed #29654 -- Made text truncation an ellipsis character instead of three dots.
Thanks Sudhanshu Mishra for the initial patch and Tim Graham for the review.
|
2018-08-21 17:46:45 +02:00 |
Rodrigo
|
371ece2f06
|
Fixed #29695 -- Added system checks for admin's app dependencies and TEMPLATES setting.
|
2018-08-20 17:57:46 -04:00 |
Tim Graham
|
d311124be5
|
Fixed #29682 -- Fixed admin change form crash if a view-only model's form has an extra field.
|
2018-08-20 11:14:20 -04:00 |
Taha Jahangir
|
0e7a9525ba
|
Fixed #29690 -- Fixed aligned <ul> positioning for RTL languages in admin.
|
2018-08-20 10:20:30 -04:00 |
Jon Dufresne
|
dc0868d414
|
Removed redundant 'model' argument in admin checks.
|
2018-08-20 09:11:42 -04:00 |
mackong
|
c832885a3e
|
Fixed #29426 -- Made UUID inputs in the admin match the width of a UUID.
|
2018-08-18 10:16:22 -04:00 |
Jon Dufresne
|
09ee3b6fe3
|
Fixed #29663 -- Made admin change view redirect to changelist with view permission.
|
2018-08-17 11:13:06 -04:00 |
Jon Dufresne
|
57f16655cd
|
Added ModelAdmin._response_post_save() to avoid code duplication.
|
2018-08-17 10:51:57 -04:00 |
Jon Dufresne
|
cd790ed1a6
|
Refs #8936 -- Added ModelAdmin.has_view_or_change_permission().
|
2018-08-16 09:49:06 -04:00 |
Clément Mangin
|
64e1a271f5
|
Fixed #29637 -- Fixed admin change form crash if the user doesn’t have the add permission to a TabularInline.
Regression in 825f0beda8 .
|
2018-08-10 11:20:43 -04:00 |
Vlastimil Zíma
|
a9f5652113
|
Fixed #28529 -- Fixed VariableDoesNotExist warnings in admin templates.
|
2018-08-06 17:03:06 -04:00 |
Claude Paroz
|
287fef8693
|
Updated contrib translations from Transifex
Forwardport of cbf7e7dc52 from stable/2.1.x.
|
2018-08-01 09:24:06 -04:00 |
Claude Paroz
|
ba83378a77
|
Fixed #29523 -- Removed jQuery usage in DateTimeShortcuts.js & collapse.js.
|
2018-07-20 12:27:53 -04:00 |
Jonah Bishop
|
263e039411
|
Fixed #29045 -- Fixed admin CSS so that select multiple elements honor the HTML size attribute.
|
2018-07-10 16:22:09 -04:00 |
Claude Paroz
|
a5f139236f
|
Fixed #29536 -- Fixed SelectFilter2.js resizing to make boxes have equal height.
Thanks Tim Graham for the review.
|
2018-06-29 17:21:27 +02:00 |
Carlton Gibson
|
5b73317181
|
Fixed #29502 -- Allowed users with the view permission to use autocomplete_fields.
|
2018-06-18 15:36:20 -04:00 |
Carlton Gibson
|
958c7b301e
|
Fixed #29419 -- Allowed permissioning of admin actions.
|
2018-06-18 15:07:29 -04:00 |
Paulo
|
553617e613
|
Fixed #29487 -- Accounted for object level permissions when calculating change view's read-only fields.
Thanks Matthew Frazier for the report and fix.
|
2018-06-15 21:54:22 -04:00 |
Henk Kahlfuß
|
3eb9127678
|
Fixed #23869 -- Made ModelAdmin.get_deleted_objects() use has_delete_permission() for permissions checking.
|
2018-06-15 10:31:08 -04:00 |
Tim Graham
|
ec2c9c3531
|
Refs #29428 -- Fixed admin check crash when using a query expression in ModelAdmin.ordering.
|
2018-06-14 21:04:43 -04:00 |
Tim Graham
|
0d8e3e608e
|
Fixed #29428 -- Fixed admin changelist crash when using a query expression without asc()/desc() in the ordering.
|
2018-06-14 14:22:04 -04:00 |
Carlton Gibson
|
b30f9b131c
|
Refs #29419, #8936 -- Removed change permission requirement for admin actions.
Partially reverted 825f0beda8 .
|
2018-06-13 14:49:28 -04:00 |
Tim Graham
|
e9bd1a3e12
|
Refs #28462 -- Fixed 'invalid escape sequence' warning on Python 3.6+.
|
2018-06-06 11:40:24 -04:00 |
Adam Donaghy
|
b18650a263
|
Fixed #28462 -- Decreased memory usage with ModelAdmin.list_editable.
Regression in 917cc288a3 .
|
2018-06-01 10:41:05 -04:00 |
Sara Heins
|
5008d59a2a
|
Fixed #28892 -- Allowed admin navbar height to expand if needed.
|
2018-05-29 21:52:51 -04:00 |
Ramiro Morales
|
f40e71a957
|
Fixed #29417 -- Corrected two admin page titles for view-only users.
|
2018-05-23 11:02:37 -04:00 |
Paulo Alvarado
|
ffb72a95bc
|
Fixed #29414 -- Restored form inputs on admin inlines when the user doesn't have the change permission.
Regression in 825f0beda8 .
|
2018-05-18 19:50:58 -04:00 |
Claude Paroz
|
77f6340d3b
|
Updated translation catalogs
|
2018-05-17 12:09:40 +02:00 |
olivierdalang
|
825f0beda8
|
Fixed #8936 -- Added a view permission and a read-only admin.
Co-authored-by: Petr Dlouhy <petr.dlouhy@email.cz>
Co-authored-by: Olivier Dalang <olivier.dalang@gmail.com>
|
2018-05-16 06:44:55 -04:00 |
T N
|
2405833c53
|
Fixed #29401 -- Updated admin's jQuery to 3.3.1.
|
2018-05-13 13:02:24 -04:00 |
Nicolas Noé
|
c4158d050f
|
Fixed #29370 -- Added choices to LogEntry.action_flag field.
|
2018-05-07 10:07:45 -04:00 |
Matthias Kestenholz
|
13efbb233a
|
Fixed #29322 -- Made admin check all ModelAdmin fieldsets for duplicates.
|
2018-04-13 11:08:30 -04:00 |
Faheel Ahmad
|
5d4d62bf4f
|
Fixed #29248 -- Renamed admin CSS class field-box to fieldBox.
|
2018-04-05 10:55:36 -04:00 |
Jon Dufresne
|
be6ca89396
|
Fixed #27991 -- Added obj arg to InlineModelAdmin.has_add_permission().
Thanks Vladimir Ivanov for the initial patch.
|
2018-04-04 19:21:50 -04:00 |
Nick Pope
|
281c0223b3
|
Refs #29227 -- Simplified NullBooleanField by making it subclass BooleanField.
|
2018-03-20 12:10:10 -04:00 |
Tim Graham
|
5fa4f40f45
|
Fixed #29227 -- Allowed BooleanField to be null=True.
Thanks Lynn Cyrin for contributing to the patch, and Nick Pope for review.
|
2018-03-20 12:10:10 -04:00 |
Hasan Ramezani
|
274e3e27f3
|
Fixed #29184 -- Made TabularInline respect model form's Meta.labels and help_texts.
|
2018-03-17 20:51:24 -04:00 |
Josh Schneier
|
b60e5fdbb7
|
Fixed #28959 -- Fixed 'No, take me back' button on admin's inline popup.
|
2018-03-15 20:47:18 -04:00 |
David Sanders
|
47bb3b68ff
|
Fixed #29219 -- Made admin filters use processed params rather than request.GET.
|
2018-03-15 11:33:19 -04:00 |
Artem Tabolin
|
a2f7433adc
|
Fixed #29221 -- Corrected admin's autocomplete widget to add a space after custom classes.
|
2018-03-15 10:55:34 -04:00 |
dzhuang
|
e17088a108
|
Fixed #29213 -- Fixed autocomplete widget's translations for zh-hans/zh-hant.
|
2018-03-13 10:58:34 -04:00 |
Daniel Hahler
|
683341db43
|
Condensed some widgets code.
|
2018-03-03 13:35:09 -05:00 |
Carlton Gibson
|
94a180402c
|
Refs #27728 -- Fixed thread safety of admin template tags.
Regression in 5cc28dc752 .
|
2018-03-01 11:45:08 -05:00 |
Tim Graham
|
4c02e3cda3
|
Refs #27728 -- Made cosmetic edits to admin template tag template overriding.
|
2018-03-01 11:45:08 -05:00 |
Claude Paroz
|
75527c0f83
|
Updated translations from Transifex
Forward port of 2126e9317e from stable/2.0.x.
|
2018-02-28 20:06:52 +01:00 |
Raffaele Salmaso
|
5cc28dc752
|
Fixed #27728 -- Allowed overriding admin templatetags templates.
|
2018-02-28 08:49:40 +01:00 |
Becky Smith
|
8116e588db
|
Fixed #17962 -- Added ModelAdmin.get_deleted_objects().
|
2018-02-24 20:41:43 -05:00 |