-
self.validators[0] = MaxValueMultiFieldValidator(self.max_length)
IndexError: list assignment index out of range
django==4.1.1
django-multiselectfield==0.1.12
-
When running this package in django 3.1, this warning message is shown:
```
/usr/local/lib/python3.9/site-packages/url_filter/validators.py:19: RemovedInDjango40Warning: django.utils.translation.ung…
-
AUTH_PASSWORD_VALIDATORS = [
{
"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator",
},
{
"NAME": "django_zxcvbn_password_validator.ZxcvbnPass…
-
I ran into an issue with a model I was trying to bulk patch that also has a unique_together constraint. Traceback is below. The issue here is that the UniqueTogetherValidator expects to be called from…
-
"""
Django settings for ablog project.
Generated by 'django-admin startproject' using Django 4.2.1.
For more information on this file, see
https://docs.djangoproject.com/en/4.2/topics/settings/
For…
-
views.py
from django.shortcuts import render
from SignModel.models import Course
from SignModel.models import Record
from django.http import HttpResponse
from SignModel.forms import check_form
…
-
In the `README`, it says that the Element text must start with `start`, for Telegram to parse things correctly. I would recommend actually enforcing this in the form, rather than rely on human authors…
-
On a brand new project start I install Django, ibm_db, ibm_db_django. I configure DB like so:
```
DATABASES = {
'default': {
'ENGINE': 'ibm_db_django',
'NAME': 'TEST',
…
-
I am using django rest auth for registration. I am using email as login and the below are my settings
```
ACCOUNT_USER_MODEL_USERNAME_FIELD = None
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_UNIQUE_E…
-
When trying to PATCH with a list of dicts, I'm getting this error:
```
ERROR: test_bulk_update (api.tests.test_api.test_api_listings_bulk.TestBulkOperationsOnListings)
---------------------------…