Easy Pickings: admin change_form label does not use mark_safe

2022-08-22 Thread Caram
I've just opened a ticket for this issue. The problem is that the label is not escape. There is no such issue with change_list.html. https://code.djangoproject.com/ticket/33946#ticket -- You received this message because you are subscribed to the Google Groups "Django developers (Contribution

Django 3.2rc1: models.W042 is raised on inherited manually specified primary key.

2021-03-25 Thread Caram
This issue was raised in alpha1, but I still had the issue in beta1 and now also in rc1. As a result, I have to manually edit the migrations files and remove lines that alter fields to become BigField(). Has this really been fixed? Am I missing something obvious? Caram -- You received this

Re: Django 3.2rc1: models.W042 is raised on inherited manually specified primary key.

2021-03-25 Thread Caram
move manually: migrations.AlterField( model_name='myclass', name='id', field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'), ), Caram Le jeudi 25 mars 2021 à 15:55:27 UT

Re: Django 3.2rc1: models.W042 is raised on inherited manually specified primary key.

2021-03-26 Thread Caram
r way round for some models). The model has not changed in any way recently however. 2. FOREIGN KEY contraints gone missing. I'm currently going through an old mysql backup to get them back. Cheers, Caram Le vendredi 26 mars 2021 à 11:30:44 UTC+1, Mariusz Felisiak a écrit : > Can you pr

Re: Django 3.2rc1: models.W042 is raised on inherited manually specified primary key.

2021-03-26 Thread Caram Dache
child row: a foreign key constraint fails (`djpat`.`#sql-bb7_1e84`, CONSTRAINT `myapp_logentry_extension_id_8856aeec_fk` FOREIGN KEY (`extension_id`) REFERENCES `myapp_extension` (`id`))') Caram Le jeu. 25 mars 2021 à 18:07, Mariusz Felisiak a écrit : > Caram, I don't see any issue h