This repository has been archived by the owner on Jun 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
differenciate comment visible in resume and report
- Loading branch information
1 parent
a37cb02
commit efbb92d
Showing
4 changed files
with
70 additions
and
3 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
45 changes: 45 additions & 0 deletions
45
.../migrations/0031_historicalsubmissionvalidation_comment_is_visible_in_reports_and_more.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,45 @@ | ||
# Generated by Django 4.2.11 on 2024-06-05 12:36 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("submissions", "0030_alter_servicefeetype_fix_price_editable"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="historicalsubmissionvalidation", | ||
name="comment_is_visible_in_reports", | ||
field=models.BooleanField( | ||
default=True, | ||
verbose_name="Commentaire visible dans le modèle d'impression", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="submissionvalidation", | ||
name="comment_is_visible_in_reports", | ||
field=models.BooleanField( | ||
default=True, | ||
verbose_name="Commentaire visible dans le modèle d'impression", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="historicalsubmissionvalidation", | ||
name="comment_is_visible_by_author", | ||
field=models.BooleanField( | ||
default=False, | ||
verbose_name="Commentaire visible dans le résumé pour l'auteur de la demande", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="submissionvalidation", | ||
name="comment_is_visible_by_author", | ||
field=models.BooleanField( | ||
default=False, | ||
verbose_name="Commentaire visible dans le résumé pour l'auteur de la demande", | ||
), | ||
), | ||
] |
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
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