mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
Merge pull request #83 from paulgueltekin/master
fixed method call with named argument
This commit is contained in:
commit
77d8fc4e33
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ class TemplateAdminForm(forms.ModelForm):
|
|||
Custom AdminForm to make the content textarea wider.
|
||||
"""
|
||||
content = forms.CharField(
|
||||
widget=TemplateContentTextArea({'rows': '24'}),
|
||||
widget=TemplateContentTextArea(attrs={'rows': '24'}),
|
||||
help_text=content_help_text, required=False)
|
||||
|
||||
class Meta:
|
||||
|
|
|
|||
Loading…
Reference in a new issue