Created
April 6, 2018 14:03
-
-
Save kurianbenoy/2c97762290c097999a5b22b7223bab7b to your computer and use it in GitHub Desktop.
Django Forms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.forms import ModelForm, Textarea | |
from .models import Classifer | |
class ClassifierForm(ModelForm): | |
class Meta: | |
model = Classifer | |
fields = ['inputtext',] | |
widget = { | |
'inputtext': Textarea(attrs={'cols': 1000, 'rows': 500}), | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment