-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
156 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
15 changes: 15 additions & 0 deletions
15
lemarche/templates/tenders/_email_sent_for_modification.html
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,15 @@ | ||
Bonjour, | ||
|
||
Merci d’avoir publié votre besoin sur le Marché de l’inclusion. Après vérification, nous vous informons que votre publication n’a pas pu être validée pour l'une des raisons suivantes : | ||
|
||
1. **Montant incohérent ou incorrect** : Le montant indiqué pourrait ne pas correspondre à la réalité de votre besoin ou présenter des incohérences. | ||
2. **Informations incomplètes** : Certaines informations essentielles pourraient manquer, empêchant les prestataires de bien comprendre votre besoin et de formuler une réponse adaptée. | ||
3. **Utilisateur non professionnel** : Nous n'acceptons actuellement que les demandes de devis provenant de professionnels. | ||
|
||
Nous vous encourageons à vérifier ces éléments et à republier votre besoin si vous remplissez les conditions requises. | ||
|
||
Merci pour votre engagement et votre envie de faire avancer l'inclusion avec nous ! | ||
|
||
À bientôt, | ||
|
||
L’équipe du Marché de l’inclusion |
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
17 changes: 17 additions & 0 deletions
17
lemarche/tenders/migrations/0095_tender_email_sent_for_modification.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,17 @@ | ||
# Generated by Django 4.2.15 on 2024-11-07 13:30 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("tenders", "0094_add_templatetransactional_tender_author_commercial_partners"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="tender", | ||
name="email_sent_for_modification", | ||
field=models.BooleanField(default=False, help_text="E-mail envoyé pour modification"), | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
lemarche/tenders/migrations/0096_alter_tender_email_sent_for_modification.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,17 @@ | ||
# Generated by Django 4.2.15 on 2024-11-23 13:53 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("tenders", "0095_tender_email_sent_for_modification"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="tender", | ||
name="email_sent_for_modification", | ||
field=models.BooleanField(default=False, verbose_name="Besoin non valide"), | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
lemarche/tenders/migrations/0097_remove_tender_email_sent_for_modification_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,21 @@ | ||
# Generated by Django 4.2.15 on 2024-11-27 21:28 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("tenders", "0096_alter_tender_email_sent_for_modification"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="tender", | ||
name="email_sent_for_modification", | ||
), | ||
migrations.AddField( | ||
model_name="tender", | ||
name="is_data_valid", | ||
field=models.BooleanField(null=True, verbose_name="Besoin valide"), | ||
), | ||
] |
21 changes: 21 additions & 0 deletions
21
lemarche/tenders/migrations/0098_remove_tender_is_data_valid_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,21 @@ | ||
# Generated by Django 4.2.15 on 2024-11-28 11:33 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("tenders", "0097_remove_tender_email_sent_for_modification_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="tender", | ||
name="is_data_valid", | ||
), | ||
migrations.AddField( | ||
model_name="tender", | ||
name="email_sent_for_modification", | ||
field=models.BooleanField(default=False, verbose_name="Modifications requises"), | ||
), | ||
] |
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
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