Dmitry Rude
Dmitry Rude
model: ``` class BaseModel(models.Model): created = models.DateTimeField(auto_now_add=True) ``` table: ``` class BaseTable(tables.Table): class Meta(): model = BaseModel fields = 'created', created = tables.Column(linkify=('url', [tables.A("pk")])) ``` without linkify i have: "08.04.2022...
Exhaustive description in the title. Discussion here: https://github.com/connormanning/entwine/issues/325
Guys, sorry, I'm emotional because I spent 7 hours fixing a bug, and it turned out that the latest werkzeug 3.1.4 update was to blame. Below is text from chatgpt...