-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Amélioration de l'admin pour le nouvel assistant (#1213)
Fixes following feedbacks
- Loading branch information
1 parent
80ffa3e
commit 10c23a3
Showing
3 changed files
with
61 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
...rations/0029_alter_produit_filieres_rep_and_more_squashed_0030_alter_produitlien_poids.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Generated by Django 5.1.4 on 2025-01-14 16:27 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
replaces = [ | ||
("qfdmd", "0029_alter_produit_filieres_rep_and_more"), | ||
("qfdmd", "0030_alter_produitlien_poids"), | ||
] | ||
|
||
dependencies = [ | ||
("qfdmd", "0028_remove_lien_poids"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="produit", | ||
name="filieres_rep", | ||
field=models.CharField(blank=True, help_text="Filière(s) REP concernée(s)"), | ||
), | ||
migrations.AlterField( | ||
model_name="produit", | ||
name="nom_eco_organisme", | ||
field=models.CharField(blank=True, help_text="Nom de l’éco-organisme"), | ||
), | ||
migrations.AlterField( | ||
model_name="produit", | ||
name="synonymes_existants", | ||
field=models.TextField( | ||
blank=True, | ||
help_text="Ce champ est obsolète, il n'est actuellement pas mis à jour automatiquement.", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="produitlien", | ||
name="poids", | ||
field=models.IntegerField( | ||
default=0, | ||
help_text="Ce champ détermine la position d'un élément dans la liste affichée.<br>Les éléments avec un poids plus élevé apparaissent plus bas dans la liste.<br>Les éléments avec un poids plus faible apparaissent plus haut.", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters