-
As an admin action
-
```
from django.utils.translation import gettext_lazy as _
from django.db import models
class AuditableModel(models.Model):
last_updated_by = models.CharField( max_length=50 )
last_up…
-
Hi there. I have a project that's been using django-computedfields for a while, but I've run into an error when upgrading Django and django-computedfields. It appears you can no longer have a computed…
-
## Description
I followed the documentation at https://docs.django-cms.org/en/latest/introduction/01-install.html#adding-django-cms-to-an-existing-django-project and followed it to the step "Da…
-
# Bug report
## What's wrong
If I run mypy on this code:
```py
from django.contrib.contenttypes.models import ContentType
from django.db import models
def f(model: type[models.Model]) -> N…
-
https://www.notion.so/sentry/DB-models-in-shared-745e0ab88932471db636f6e84a34bec2#7dc347dc6cc24f1f92aa40ba05486a5a
-
In the admin panel, making a search on any dissemination table that isn't "Generals" will result in a crash. This is because `report_id` is a foreign key, and is not supported by Django's most basic s…
-
I have a model that is failing to be processed due to having a GeneratedField on it. Anytime I attempt it I receive the following error:
`File "/usr/local/lib/python3.10/dist-packages/django_bulk_loa…
-
I have been hitting this issue since a long time.
tubesync web gui works fine 1 out of 5 times, the other 4 times instead it wait for some 30 seconds, then bails out with an "internal server error"…
-
## Issue Description
Django supports putting `db_index=True` on model fields, this can speed up DB level fetch requests:
[types-of-database-indexing-in-django](https://medium.com/@sandesh.thakar1…