| Age | Commit message (Collapse) | Author |
|
Refs #32728.
|
|
Co-authored-by: Valz <ahmadahussein0@gmail.com>
Co-authored-by: Nick Pope <nick@nickpope.me.uk>
|
|
|
|
|
|
|
|
Refs #25134, #32099.
|
|
admin check.
|
|
processor dependency.
Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
|
|
than one foreign key to the same parent.
|
|
Fixed in 1d8eb0cae57731b481a88dca272b2cb0d645bd8e.
|
|
SessionMiddleware subclasses.
|
|
checks allow subclasses.
|
|
|
|
TEMPLATES setting.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
registration.
Thanks Morgan Aubert for the test.
|
|
|
|
back to isinstance(field, models.ManyToManyField).
This partially reverts 983c158da7723eb00a376bd31db76709da4d0260
|
|
Thanks Markus Holtermann, Collin Anderson and Tim Graham for the reviews.
|
|
|
|
|
|
|
|
This allows dynamically-generated attributes to be specified in
checked ModelAdmin attributes without triggering errors.
|
|
|
|
fields.
|
|
ForeignKey/OneToOneField
|
|
|
|
apps.models_ready
|
|
|
|
|
|
a list/tuple.
|
|
|
|
|
|
Thanks Jonathan Lindén for the initial patch, and Tim Graham
and Gabe Jackson for the suggestions.
|
|
|
|
|
|
|
|
GenericInlineModelAdmin.
Thanks to jwa for the report.
|
|
|
|
Flatten a level of sublists before checking for duplicate fields.
When given sublists such as:
```python
class FooAdmin(admin.ModelAdmin):
fields = ('one', ('one', 'two'))
```
The previous code did not correctly detect the duplicated 'one' field.
Thanks to jwa for the report.
|
|
|
|
During the admin check for list_editable _check_list_editable_item
should return an empty list if all checks pass. Additionally the
Testcase test_readonly_and_editable was changed to test what the
name implies instead of duplicating the logic of test_readonly.
|
|
These warnings all emerged as the result of the introduction of the checks framework.
Thanks to Anssi Kääriäinen for the report.
|