Skip to content

Commit

Permalink
measures/models: update string to ensure different translation fixes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
philli-m committed Oct 30, 2023
1 parent 1ab01ae commit e06b7d9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.19 on 2023-10-30 11:54

from django.db import migrations
import multiselectfield.db.fields


class Migration(migrations.Migration):

dependencies = [
('apps_measures', '0011_alter_measuresdetailpage_districts'),
]

operations = [
migrations.AlterField(
model_name='measuresdetailpage',
name='inclusive_shaping_of_urban_life',
field=multiselectfield.db.fields.MultiSelectField(blank=True, choices=[('1', 'Participatory Governance'), ('2', 'Transparent Decision Processes'), ('3', 'Citizen Services'), ('4', 'Digital Citizens Rights and Privacy')], max_length=7),
),
]
2 changes: 1 addition & 1 deletion apps/measures/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
]

INCLUSIVE_SHAPING_OF_URBAN_LIFE = [
('1', _('Participation')),
('1', _('Participatory Governance')),
('2', _('Transparent Decision Processes')),
('3', _('Citizen Services')),
('4', _('Digital Citizens Rights and Privacy')),
Expand Down

0 comments on commit e06b7d9

Please sign in to comment.