Eric Blum
|
384cdf0f7a
|
Fixed #36363 -- Added field names to admin duplicated fields error hint.
|
2025-05-08 11:38:13 +01:00 |
|
Tom Carrick
|
4ade8386eb
|
Fixed #10743 -- Allowed lookups for related fields in ModelAdmin.list_display.
Co-authored-by: Alex Garcia <me@alexoteiza.com>
Co-authored-by: Natalia <124304+nessita@users.noreply.github.com>
Co-authored-by: Nina Menezes <https://github.com/nmenezes0>
|
2024-02-05 21:42:04 -03:00 |
|
Mariusz Felisiak
|
f64fd47a76
|
Fixed #9602 -- Added AdminSite.get_model_admin().
This allows retrieving an admin class for the given model class without
using internal attributes.
|
2023-07-07 08:06:01 +02:00 |
|
nessita
|
89c27d8672
|
Fixed #34601 -- Added field name to check message for ModelAdmin.readonly_fields.
Co-authored-by: Rick van Hattem <wolph@wol.ph>
|
2023-06-05 05:56:53 +02:00 |
|
siddhartha-star-dev
|
dcebc5da48
|
Refs #2259 -- Disallowed primary keys in ModelAdmin.list_editable.
Refs #32728.
|
2022-04-25 11:00:50 +02:00 |
|
David Smith
|
3b3f38b3b0
|
Fixed #31169 -- Adapted the parallel test runner to use spawn.
Co-authored-by: Valz <ahmadahussein0@gmail.com>
Co-authored-by: Nick Pope <nick@nickpope.me.uk>
|
2022-03-15 16:23:55 +01:00 |
|
Mariusz Felisiak
|
7119f40c98
|
Refs #33476 -- Refactored code to strictly match 88 characters line length.
|
2022-02-07 20:37:05 +01:00 |
|
django-bot
|
9c19aff7c7
|
Refs #33476 -- Reformatted code with Black.
|
2022-02-07 20:37:05 +01:00 |
|
Hasan Ramezani
|
1da54bfe7d
|
Corrected messages of admin checks for invalid model field names.
|
2021-03-04 08:41:28 +01:00 |
|
Nick Pope
|
9204485396
|
Fixed #16117 -- Added decorators for admin action and display functions.
Refs #25134, #32099.
|
2021-01-13 17:19:22 +01:00 |
|
Hasan Ramezani
|
18759b2209
|
Fixed #31616 -- Added hint about middleware ordering for SessionMiddleware admin check.
|
2020-05-25 21:14:32 +02:00 |
|
Jon Dufresne
|
d522b51c40
|
Fixed #31575 -- Added system check for admin sidebar request context processor dependency.
Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
|
2020-05-14 11:00:51 +02:00 |
|
Shubham singh
|
f4647179cc
|
Fixed #31086 -- Improved error message for admin model inlines with more than one foreign key to the same parent.
|
2019-12-17 09:15:01 +01:00 |
|
Baptiste Mispelon
|
4161e35048
|
Refs #12679 -- Added test for using property as ModelAdmin.inlines.
Fixed in 1d8eb0cae57731b481a88dca272b2cb0d645bd8e.
|
2019-12-14 21:15:44 +01:00 |
|
Aarni Koskela
|
efeceba589
|
Fixed #30312 -- Relaxed admin check from django.contrib.sessions to SessionMiddleware subclasses.
|
2019-04-26 11:31:06 +02:00 |
|
Herman S
|
f976ab1b11
|
Fixed #30237 -- Made Authentication/SessionMiddleware and ModelBackend admin checks allow subclasses.
|
2019-03-14 20:09:57 -04:00 |
|
Jon Dufresne
|
9f6d0c11eb
|
Removed Jinja2 dependency from admin_checks tests.
|
2018-10-04 16:05:22 +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 |
|
Jon Dufresne
|
03a2c783e8
|
Fixed admin_checks tests to run in isolation.
|
2018-08-19 08:31:59 -07:00 |
|
Дилян Палаузов
|
6c0042430e
|
Fixed #28776 -- Fixed a/an/and typos in docs and comments.
|
2017-11-06 22:41:03 -05:00 |
|
Anton Samarchyan
|
2b53c8377d
|
Improved test coverage of contrib/admin/checks.py.
|
2017-06-02 18:47:07 -04:00 |
|
Tim Graham
|
29f607927f
|
Fixed spelling of "nonexistent".
|
2017-02-03 08:01:45 -05:00 |
|
chillaranand
|
d6eaf7c018
|
Refs #23919 -- Replaced super(ClassName, self) with super().
|
2017-01-25 12:23:46 -05:00 |
|
Claude Paroz
|
f3c43ad1fd
|
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
|
2017-01-18 13:44:34 +01:00 |
|
Claude Paroz
|
d7b9aaa366
|
Refs #23919 -- Removed encoding preambles and future imports
|
2017-01-18 09:55:19 +01:00 |
|
Adam Chainz
|
9daf8c43bd
|
Fixed #26961 -- Made admin checks run when DEBUG=False.
|
2017-01-10 07:02:13 -05:00 |
|
Adam Chainz
|
d57ecf40eb
|
Fixed #27673 -- Made admin's checks run at check time instead of during registration.
Thanks Morgan Aubert for the test.
|
2017-01-10 07:02:13 -05:00 |
|
za
|
321e94fa41
|
Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.
|
2016-11-10 21:30:21 -05:00 |
|
Collin Anderson
|
384f89f8f8
|
Fixed #26998 -- Reverted some admin checks from checking field.many_to_many back to isinstance(field, models.ManyToManyField).
This partially reverts 983c158da7723eb00a376bd31db76709da4d0260
|
2016-08-23 16:00:12 -04:00 |
|
Claude Paroz
|
983c158da7
|
Refs #24227 -- Replaced M2M isinstance checks by field.many_to_many
Thanks Markus Holtermann, Collin Anderson and Tim Graham for the reviews.
|
2016-03-19 09:24:27 +01:00 |
|
Tim Graham
|
004ba0f99e
|
Removed unneeded hint=None/obj=None in system check messages.
|
2016-02-12 13:01:25 -05:00 |
|
Vincenzo Pandolfo
|
0490d72f2a
|
Fixed #24116 -- Moved AdminSite.check_dependencies() to system checks.
|
2016-01-22 18:29:56 -05:00 |
|
Dražen Odobašić
|
b1e33ceced
|
Fixed #23395 -- Limited line lengths to 119 characters.
|
2015-09-12 11:40:50 -04:00 |
|
Malcolm Box
|
1d8eb0cae5
|
Fixed #25374 -- Made ModelAdmin checks work on instances instead of classes.
This allows dynamically-generated attributes to be specified in
checked ModelAdmin attributes without triggering errors.
|
2015-09-11 09:28:34 -04:00 |
|
Fabrizio Ettore Messina
|
ece78684d9
|
Fixed #25267 -- Corrected message for admin.E122 system check.
|
2015-08-13 12:34:48 -04:00 |
|
Alasdair Nicol
|
8972818289
|
Fixed #25206 -- Fixed error message when checking a ModelAdmin fieldset's fields.
|
2015-08-03 08:58:39 -04:00 |
|
Flavio Curella
|
c2e70f0265
|
Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey/OneToOneField
|
2015-07-27 18:28:13 -04:00 |
|
Simon Charette
|
be67400b47
|
Refs #24652 -- Used SimpleTestCase where appropriate.
|
2015-05-20 13:46:13 -04:00 |
|
Daniel Pyrathon
|
19188826b4
|
Fixed #24146 -- Allowed model._meta.get_field() to be used after apps.models_ready
|
2015-02-10 19:55:06 -05:00 |
|
Tim Graham
|
0ed7d15563
|
Sorted imports with isort; refs #23860.
|
2015-02-06 08:16:28 -05:00 |
|
Tim Graham
|
67a76500a5
|
Removed support for admin validators per deprecation timeline; refs #16905.
|
2015-01-18 14:43:21 -05:00 |
|
Muthiah Annamalai
|
b75c707943
|
Fixed #24089 -- Added check for when ModelAdmin.fieldsets[1]['fields'] isn't a list/tuple.
|
2015-01-12 13:47:58 -05:00 |
|
Claude Paroz
|
51890ce889
|
Applied ignore_warnings to Django tests
|
2014-12-30 18:16:25 +01:00 |
|
Mosson, Andrew
|
b7219c7ba5
|
Fixed #23497 -- Made admin system checks run for custom AdminSites.
|
2014-12-17 09:11:46 -05:00 |
|
Diego Guimarães
|
f39b0421b4
|
Fixed #23338 -- Added warning when unique=True on ForeigKey
Thanks Jonathan Lindén for the initial patch, and Tim Graham
and Gabe Jackson for the suggestions.
|
2014-11-27 19:42:30 -05:00 |
|
Veres Lajos
|
a71a2ea756
|
Fixed typos using https://github.com/vlajos/misspell_fixer
|
2014-11-03 20:59:30 -05:00 |
|
Alex Gaynor
|
2bcb8bfc8d
|
Fix many many typos in comments throughout the codebase
|
2014-04-26 10:18:45 -07:00 |
|
Alex Gaynor
|
add1584bfa
|
4 flake8 warning fixes
|
2014-03-08 16:17:54 -08:00 |
|
Russell Keith-Magee
|
70ec4d776e
|
Fixed #22034 -- Added a specific set of relation checks for GenericInlineModelAdmin.
Thanks to jwa for the report.
|
2014-03-08 11:25:23 +08:00 |
|
Russell Keith-Magee
|
3c5fc708f1
|
Edited contrib.admin check messages for grammar and consistency.
|
2014-03-03 13:27:17 +08:00 |
|