-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #314 from maykinmedia/fix-casing-in-standaard-adre…
…s-help-text Help text for DigitaalAdres.is_standaard should point to correctly cased field name
- Loading branch information
Showing
3 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
...ant/components/klantinteracties/migrations/0024_alter_digitaaladres_is_standaard_adres.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,22 @@ | ||
# Generated by Django 4.2.15 on 2025-01-06 11:56 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("klantinteracties", "0023_alter_digitaaladres_omschrijving"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="digitaaladres", | ||
name="is_standaard_adres", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="Geeft aan of dit digitaal adres het standaard adres is voor het `soortDigitaalAdres`", | ||
verbose_name="Is standaard adres", | ||
), | ||
), | ||
] |
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