Skip to content

Commit

Permalink
hotfix(vote): remove vereador from forms
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelzinh3 committed Oct 11, 2024
1 parent e16b13f commit 087750e
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 087750e

Please sign in to comment.