Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions wcivf/apps/parties/migrations/0025_alter_party_ec_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Generated by Django 5.2.12

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("parties", "0024_alter_partyemblem_description"),
]

operations = [
migrations.AlterField(
model_name="party",
name="ec_id",
field=models.CharField(
db_index=True,
help_text="\n An ID issued by The Electoral Commission in their party register,\n with the exception of Democracy Club pseudo IDs for special parties\n ",
max_length=25,
null=True,
unique=True,
verbose_name="Electoral Commission Identifier",
),
),
]
4 changes: 2 additions & 2 deletions wcivf/apps/parties/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ class Party(models.Model):
max_length=25,
unique=True,
null=True,
verbose_name="Electoral Commission Idenfitier",
verbose_name="Electoral Commission Identifier",
help_text="""
An ID issued by The Electoral Commission in their party register,
with the exception of Democracy Club psuedo IDs for special parties
with the exception of Democracy Club pseudo IDs for special parties
""",
)
register = models.CharField(
Expand Down