-
validators are defined individually for each field in our Django models. To improve readability and maintainability, it is proposed that validators be specified as a comma-separated list. The addition…
-
I'm just going through an exercise of upgrading an internal app with very old versions to slightly less old and ran into some breakage relating to #88 which I think requires a code change here.
```…
-
## Summary
If a nested field is updated via the parent field, a validation on the nested field should be performed, if some validators are provided on the django field.
## Feature Reques…
-
When accessing the admin page, we currently have a bunch of errors logged:
```
2024-10-23 16:15:20,746 [DEBUG] django.template: Exception while resolving variable 'debug' in template 'admin/index.ht…
-
I have been trying to find an implementation on Django Rest Framework, to no avail. Reading the docs, I don't see anything that I have missed, I am able to create public and additional tenants, howev…
-
## Fields in user model
Each app has a user module. In general, the following fields are included in `user` model:
```python
# django user default fields
# `AbstractUser` from `django.contrib.…
-
## Expected Behavior (Mandatory)
List of objects displaying correctly in admin.
## Actual Behavior (Mandatory)
`AttributeError: 'DjangoField' object has no attribute 'empty_values'`
## How…
-
## Checklist
3.15 added support for unique constraint validators in serializers: https://github.com/encode/django-rest-framework/pull/7438
This unfortunately breaks when it comes to list seriali…
-
While clicking around with two people on the test server I commonly see the following error appear. After waiting a few seconds and refreshing the page, the error will often resolve itself.
**To R…
-
I have a problem with `TenantAccessMiddleware`. When user authentificated in public after in my public I receive this error: 'WSGIRequest' object has no attribute 'tenant'
```python
SHARED_APPS …