Skip to content

Instantly share code, notes, and snippets.

@kurianbenoy
Created April 6, 2018 14:03
Show Gist options
  • Save kurianbenoy/2c97762290c097999a5b22b7223bab7b to your computer and use it in GitHub Desktop.
Save kurianbenoy/2c97762290c097999a5b22b7223bab7b to your computer and use it in GitHub Desktop.
Django Forms
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