Ken Whitesell
|
0a9aa02e6f
|
Fixed #33077 -- Fixed links to related models for admin's readonly fields in custom admin site.
|
2021-09-18 12:27:28 +02:00 |
antoinehumbert
|
de95c82667
|
Fixed #31867 -- Made TabularInline handling of hidden fields with view-only permissions consistent with StackedInline.
|
2021-09-10 10:10:53 +02:00 |
saeedblanchette
|
66ed03e7c9
|
Refs #24121 -- Added __repr__() to AdminForm, BlockContext, BlockTranslateNode, and IncludeNode.
|
2021-06-10 12:47:53 +02:00 |
Julien Rebetez
|
b790883065
|
Fixed #31181 -- Added links to related models for admin's readonly fields.
|
2020-10-08 19:53:49 +02:00 |
Jon Dufresne
|
81ffedaacc
|
Fixed #31524 -- Removed minified static assets from the admin.
|
2020-05-14 16:07:56 +02:00 |
Nick Pope
|
335c9c94ac
|
Simplified imports from django.db and django.contrib.gis.db.
|
2020-02-04 13:20:06 +01:00 |
Jones Ambrosi
|
f9561144d7
|
Fixed #30520 -- Fixed crash of admin model inlines on custom fields without labels.
|
2019-06-04 10:27:12 +02:00 |
Etienne Chové
|
4dcbe6eb2d
|
Fixed #30221 -- Made label suffix of admin's read-only fields translatable.
|
2019-02-28 11:12:30 -05:00 |
redodo
|
2e4776196d
|
Fixed #29953 -- Added CSS class to column headers in tabular inlines.
The class name is the same as one given to the fields in the change list.
|
2018-11-20 18:17:53 -05:00 |
Carlton Gibson
|
bf39978a53
|
Fixed CVE-2018-16984 -- Fixed password hash disclosure to admin "view only" users.
Thanks Claude Paroz & Tim Graham for collaborating on the patch.
|
2018-10-01 10:05:01 +02: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 |
Claude Paroz
|
ba83378a77
|
Fixed #29523 -- Removed jQuery usage in DateTimeShortcuts.js & collapse.js.
|
2018-07-20 12:27:53 -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 |
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 |
Hasan Ramezani
|
274e3e27f3
|
Fixed #29184 -- Made TabularInline respect model form's Meta.labels and help_texts.
|
2018-03-17 20:51:24 -04:00 |
Дилян Палаузов
|
a38ae914d8
|
Fixed #28996 -- Simplified some boolean constructs and removed trivial continue statements.
|
2018-01-12 12:44:50 -05:00 |
Tim Graham
|
acc8dd4142
|
Fixed #28984 -- Made assorted code simplifications.
|
2018-01-03 13:24:02 -05:00 |
Дилян Палаузов
|
4c599ece57
|
Fixed #28930 -- Simplified code with any() and all().
|
2017-12-26 17:11:15 -05:00 |
Vasiliy Bolshakov
|
03974d8122
|
Fixed #28866 -- Made InlineAdminFormSet include InlineModelAdmin's Media before its formset's Media.
This provides better backwards compatibility following refs #28377.
|
2017-11-30 20:15:28 -05:00 |
Johannes Hoppe
|
c19b56f633
|
Fixed #28377 -- Made combining form Media retain relative asset order.
Thanks Florian Apolloner, Mariusz Felisiak, and Tim Graham for reviews.
|
2017-07-20 11:06:30 -04:00 |
Paulo
|
9dc83c356d
|
Fixed #27967 -- Fixed KeyError in admin's inline form with inherited non-editable pk.
Thanks Robin Anupol for the initial report and workaround.
|
2017-06-12 21:12:54 -04:00 |
Claude Paroz
|
8346680e1c
|
Refs #27795 -- Removed unneeded force_text calls
Thanks Tim Graham for the review.
|
2017-03-04 18:18:21 +01:00 |
Claude Paroz
|
c651331b34
|
Converted usage of ugettext* functions to their gettext* aliases
Thanks Tim Graham for the review.
|
2017-02-07 09:04:04 +01:00 |
Anton Samarchyan
|
5411821e3b
|
Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.
|
2017-02-04 16:39:28 -05:00 |
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
Simon Charette
|
cecc079168
|
Refs #23919 -- Stopped inheriting from object to define new style classes.
|
2017-01-19 08:39:46 +01:00 |
Claude Paroz
|
7b2f2e74ad
|
Refs #23919 -- Removed six.<various>_types usage
Thanks Tim Graham and Simon Charette for the reviews.
|
2017-01-18 20:18:46 +01:00 |
Claude Paroz
|
d7b9aaa366
|
Refs #23919 -- Removed encoding preambles and future imports
|
2017-01-18 09:55:19 +01:00 |
Tim Graham
|
d67a46e104
|
Refs #25135 -- Removed support for the contrib.admin allow_tags attribute.
Per deprecation timeline.
|
2017-01-17 20:52:01 -05:00 |
Adam Chainz
|
6252fd6314
|
Fixed #27532 -- Deprecated Model._meta.has_auto_field
|
2016-11-25 13:24:11 -05:00 |
Ramin Farajpour Cami
|
967be82443
|
Fixed E305 flake8 warnings.
|
2016-11-14 12:30:46 -05:00 |
Tim Graham
|
6f3c78dbe6
|
Fixed #27266 -- Allowed using assertFormError()/assertFormsetError() in admin forms and formsets.
Thanks Diego Andrés Sanabria Martín for the report and review.
|
2016-09-27 09:56:19 -04:00 |
Jeff Willette
|
7148929a5e
|
Fixed #27216 -- Corrected import location in admin deprecation messages.
|
2016-09-13 13:45:24 -04:00 |
Claude Paroz
|
2ced2f785d
|
Replaced smart_* by force_* calls whenever possible
The smart_* version should only be used when a lazy string should keep
its lazy status.
|
2016-09-03 13:46:41 +02:00 |
Berker Peksag
|
a02b5848ae
|
Replaced property() usage with decorator in several places.
|
2016-08-25 20:06:22 -04:00 |
Paulo
|
9c2d5a8d33
|
Fixed #26729 -- Allowed overriding a form field's label/help_text in Form.__init__() for TabularInline.
|
2016-06-21 14:26:47 -04:00 |
Tim Graham
|
df8d8d4292
|
Fixed E128 flake8 warnings in django/.
|
2016-04-08 09:51:06 -04:00 |
Alexander Gaevsky
|
69208a5a1c
|
Fixed #25465 -- Restored line breaks conversion in admin readonly fields.
|
2015-12-29 19:31:43 -05:00 |
Karen Tracey
|
5399ccc0f4
|
Fixed #494 -- Added ability to specify classes on admin inline fieldsets.
This includes the ability to collapse inlines by specifying a class named
'collapse'.
|
2015-12-21 13:50:06 -05:00 |
Johannes Hoppe
|
cf546e11ac
|
Fixed #21221 -- Made form Media and static template tag use staticfiles if installed.
|
2015-12-10 14:30:19 -05:00 |
Thomas Grainger
|
d638cdc42a
|
Fixed #25165 -- Removed inline JavaScript from the admin.
This allows setting a Content-Security-Policy HTTP header
(refs #15727).
Special thanks to blighj, the original author of this patch.
|
2015-12-05 15:51:57 -05:00 |
matiasb
|
12aeed8c94
|
Fixed #24976 -- Fixed missing form label in tabular inline.
If the model form had a form field specified, the label rendered
as "None".
|
2015-10-21 13:35:50 -04:00 |
Tim Graham
|
7140d4adf7
|
Refs #23444 -- Removed InlineAdminForm.original_content_type_id per deprecation timeline.
|
2015-09-23 19:31:10 -04:00 |
Ola Sitarska
|
f2f8972def
|
Fixed #25135 -- Deprecated the contrib.admin allow_tags attribute.
Thanks Jaap Roes for the idea and initial patch.
|
2015-09-08 19:13:43 -04:00 |
Tim Graham
|
aaacaeb096
|
Renamed RemovedInDjangoXYWarnings for new roadmap.
Forwardport of ae1d663b79
from stable/1.8.x plus more.
|
2015-06-24 16:08:20 -04:00 |
Trey Hunner
|
788071e22d
|
Moved jQuery to a vendor/jquery subdirectory.
|
2015-06-07 22:23:42 +02:00 |
Loek van Gent
|
0207bdd2d4
|
Fixed #24474 -- Allowed configuring the admin's empty change list value.
|
2015-06-04 21:06:26 -04:00 |
Curtis Maloney
|
14ecbd02a3
|
Removed cases of six.iter* wrapped in a list()
There's absolutely no advantage [and a mild performance hit] to using six.iter*
in these cases.
|
2015-04-18 23:29:29 +10:00 |
Tim Graham
|
1273a7a0e8
|
Revert "Fixed #24474 -- Allowed configuring the admin's empty change list value."
This reverts commit 72f769f494 .
There are several test failures that need to be fixed.
|
2015-04-08 20:39:59 -04:00 |
Loek van Gent
|
72f769f494
|
Fixed #24474 -- Allowed configuring the admin's empty change list value.
|
2015-04-08 20:27:01 -04:00 |