Skip to content

Commit

Permalink
Merge pull request #310 from nossas/hotfix/remove-vereador-vpc
Browse files Browse the repository at this point in the history
[Fix] Remove a opção "Vereador" do Cadastro VPC
  • Loading branch information
igr-santos authored Oct 11, 2024
2 parents a89fe11 + 087750e commit 0abdb7c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/org_eleicoes/votepeloclima/candidature/forms/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,10 @@ class ApplicationForm(EntangledModelFormMixin, DisabledMixin, forms.ModelForm):
)
intended_position = forms.ChoiceField(
label="Cargo pretendido",
choices=IntendedPosition.choices,
choices=(
("", "Selecione uma opção"),
("prefeitura", "Prefeito/a"),
),
help_text="Selecione o cargo que você está concorrendo",
)
state = CepField(
Expand Down

0 comments on commit 0abdb7c

Please sign in to comment.