Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Affichage des dépôts de besoins de type sourcing et anonyme côté utilisateur #961

Merged
merged 12 commits into from
Nov 8, 2023
Prev Previous commit
Next Next commit
add field to get be anonymous on tender published
  • Loading branch information
madjid-asa committed Nov 8, 2023
commit a930f0e6c17b31c8cddc3b0a063129aa16140120
17 changes: 17 additions & 0 deletions lemarche/tenders/migrations/0059_tender_response_is_anonymous.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.5 on 2023-10-17 14:20

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("tenders", "0058_tenderstepsdata"),
]

operations = [
migrations.AddField(
model_name="tender",
name="response_is_anonymous",
field=models.BooleanField(default=False, verbose_name="Je souhaite rester anonyme"),
),
]