mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
fixed method call with named argument
This commit is contained in:
parent
49fc6c47ff
commit
1c9467fa37
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,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