Skip to content

Commit

Permalink
Merge pull request #312 from maykinmedia/issue/252-cannot-add-person-…
Browse files Browse the repository at this point in the history
…frontend

[#252] Add blank=True on overlijdensdatum
  • Loading branch information
stevenbal authored Dec 24, 2024
2 parents 1ce6afb + b2b6f7c commit 2d1abfa
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.2.15 on 2024-12-23 14:01

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("contactgegevens", "0002_auto_20240126_1323"),
]

operations = [
migrations.AlterField(
model_name="persoon",
name="overlijdensdatum",
field=models.DateField(
blank=True,
help_text="Aanduiding van datum volgens de NEN-ISO 8601:2019-standaard. Een datum wordt genoteerd van het meest naar het minst significante onderdeel. Een voorbeeld: 2022-02-21",
null=True,
verbose_name="overlijdensdatum",
),
),
]
1 change: 1 addition & 0 deletions src/openklant/components/contactgegevens/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ class Persoon(AdresMixin):
_("overlijdensdatum"),
editable=True,
null=True,
blank=True,
help_text=_(
"Aanduiding van datum volgens de NEN-ISO 8601:2019-standaard. "
"Een datum wordt genoteerd van het meest naar het minst "
Expand Down

0 comments on commit 2d1abfa

Please sign in to comment.