Doc updates.
This commit is contained in:
parent
5f7e2a179e
commit
16266ff0ee
1 changed files with 4 additions and 2 deletions
|
|
@ -139,8 +139,10 @@ class CharacterForm(ObjectForm):
|
||||||
'db_key': 'Name',
|
'db_key': 'Name',
|
||||||
}
|
}
|
||||||
|
|
||||||
# Fields pertaining to user-configurable attributes on the Character object.
|
# Fields pertaining to configurable attributes on the Character object.
|
||||||
desc = forms.CharField(label='Description', widget=forms.Textarea(attrs={'rows': 3}), max_length=2048, required=False)
|
desc = forms.CharField(label='Description', max_length=2048, required=False,
|
||||||
|
widget=forms.Textarea(attrs={'rows': 3}),
|
||||||
|
help_text="A brief description of your character.")
|
||||||
|
|
||||||
class CharacterUpdateForm(CharacterForm):
|
class CharacterUpdateForm(CharacterForm):
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue