Skip to content

Commit

Permalink
Improve field description
Browse files Browse the repository at this point in the history
  • Loading branch information
brmzkw committed Feb 9, 2025
1 parent d446c26 commit 440d84a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions mesads/app/migrations/0089_alter_ads_attribution_date.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 5.0.6 on 2025-02-07 10:00

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("app", "0088_adsuser_date_location_gerance_and_more"),
]

operations = [
migrations.AlterField(
model_name="ads",
name="attribution_date",
field=models.DateField(
blank=True,
help_text="Date à laquelle le titulaire (propriétaire) actuel a racheté l'ADS. Laissez ce champ vide si le titulaire n'a pas changé depuis la création de l'ADS.",
null=True,
verbose_name="Date d'attribution de l'ADS au titulaire actuel",
),
),
]
2 changes: 1 addition & 1 deletion mesads/app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def unique_error_message(self, model_class, unique_check):
blank=True,
null=True,
verbose_name="Date d'attribution de l'ADS au titulaire actuel",
help_text="Laissez ce champ vide si le titulaire n'a pas changé depuis la création de l'ADS.",
help_text="Date à laquelle le titulaire (propriétaire) actuel a racheté l'ADS. Laissez ce champ vide si le titulaire n'a pas changé depuis la création de l'ADS.",
)

accepted_cpam = models.BooleanField(
Expand Down

0 comments on commit 440d84a

Please sign in to comment.