Guest User

Untitled

a guest
Jul 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. from django.utils import timezone
  2.  
  3. class OcorrenciaForm(ModelForm):
  4.  
  5. class Meta:
  6. model = Rg_ocorrencia
  7. fields = ['criado_em','unidade', 'titulo', 'descricao']
  8.  
  9. def __init__(self, *args, **kwargs):
  10. super().__init__(*args, **kwargs)
  11. self.fields['criado_em'].initial = timezone.now()
Add Comment
Please, Sign In to add comment