Why not use a mono repo?
From: django-developers@googlegroups.com
on behalf of Alex Sonar
Sent: Sunday, April 2, 2023 10:21:33 PM
To: Django developers (Contributions to Django itself)
Subject: Re: The problem of versioning a large project.
It is about one pro
Dear All,
I am writing to report an issue I encountered while working with Django
admin. I had a model with a field that uses Choices as follows:
```
status = FSMField(default=STATUSES.PENDING, choices=STATUSES,
protected=True)
```
I overrode the get_status_display method, but to my surprise, i
Hi Ibrahim,
get_FOO_display() isn't intended to be overridden like that, it's just a
convenience method for use in templates/whatever that refers to the
underlying flatchoices.
For clarity, please see the documentation:
https://docs.djangoproject.com/en/4.2/ref/models/instances/#django.db.models.