mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 05:57:16 +02:00
Doc updates.
This commit is contained in:
parent
e5ec847c70
commit
541e422427
1 changed files with 4 additions and 2 deletions
|
|
@ -139,8 +139,10 @@ class CharacterForm(ObjectForm):
|
|||
'db_key': 'Name',
|
||||
}
|
||||
|
||||
# Fields pertaining to user-configurable attributes on the Character object.
|
||||
desc = forms.CharField(label='Description', widget=forms.Textarea(attrs={'rows': 3}), max_length=2048, required=False)
|
||||
# Fields pertaining to configurable attributes on the Character object.
|
||||
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):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue