views:

71

answers:

1

Simply, I write:

# forms.py
class NoteForm(ModelForm):
def __init__(self, *args, **kwargs): 
    super(NoteForm, self).__init__(*args, **kwargs)
    #add attributes to html-field-tag:
    self.fields['content'].widget.attrs['rows'] = 3
    self.fields['title'].widget.attrs['size'] = 20

class Meta:
    model = Note
    fields = ('title','content')

To add or modify some attributes to the HTML tag field.

But in this time, I will have to do it directly in the Note model in models.py

#models.py
class Note(models.Model):
    title =   models.CharField(max_length=100)
    content = models.TextField(max_length=255)
    #how to define the fields.widget.attrs here ?????

Just FYI: Why? Because is going to work as a

NotesFormSet = inlineformset_factory(NoteBook, Note, extra=10)

To add many Notes when adding/editing a NoteBook

NOTE: It is not django admin

If im not giving you sufficient context, comment plz, any hint is apreciated =')

+1  A: 

No, you still do it in a form, but you just pass that form as a parameter to inlineformset_factory.

NotesFormSet = inlineformset_factory(NoteBook, Note, extra=10, form=NoteForm)
Daniel Roseman
OMG! It works :D. thanks!
panchicore