Skip to content

Commit

Permalink
Fix #3094 - Ocultar os campos de fax (#3095)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjoao authored and eribeiro committed Apr 1, 2020
1 parent 573efe7 commit 3c3d284
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion sapl/base/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,9 @@ class Meta:
'uf': forms.Select(attrs={'class': 'selector'}),
'cep': forms.TextInput(attrs={'class': 'cep'}),
'telefone': forms.TextInput(attrs={'class': 'telefone'}),
'fax': forms.TextInput(attrs={'class': 'telefone'}),
# O campo fax foi ocultado porque não é utilizado.
'fax': forms.HiddenInput(),
# 'fax': forms.TextInput(attrs={'class': 'telefone'}),
'logotipo': ImageThumbnailFileInput,
'informacao_geral': forms.Textarea(
attrs={'id': 'texto-rico'})
Expand Down
4 changes: 3 additions & 1 deletion sapl/templates/comissoes/layouts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ Comissao:
- tipo data_criacao unidade_deliberativa data_extincao
{% trans 'Dados Complementares' %}:
- local_reuniao agenda_reuniao telefone_reuniao
- endereco_secretaria telefone_secretaria fax_secretaria
# O campo fax foi ocultado porque não é utilizado.
# endereco_secretaria telefone_secretaria fax_secretaria
- endereco_secretaria telefone_secretaria
- secretario email
- finalidade
{% trans 'Temporária' %}:
Expand Down

0 comments on commit 3c3d284

Please sign in to comment.