forms.py 238 B

123456789101112131415
  1. from django import forms
  2. from Ws.models import Noticia
  3. class NoticiaAdminForm(forms.ModelForm):
  4. descripcion = forms.CharField(widget = forms.Textarea)
  5. class Meta:
  6. model = Noticia
  7. #fields = '__all__'