mirror of
https://github.com/evennia/evennia.git
synced 2026-03-30 20:47:17 +02:00
Changed to Django1.7. Django 1.6 no longer supported. To change, upgrade django to 1.7+ and then run manage.py migrate, possibly followed by manage.py migrate --fake for objects and players.
This commit is contained in:
parent
1fc91f85ea
commit
bb36f2cb76
20 changed files with 431 additions and 14 deletions
|
|
@ -11,6 +11,8 @@ class HelpEntryForm(forms.ModelForm):
|
|||
"Defines how to display the help entry"
|
||||
class Meta:
|
||||
model = HelpEntry
|
||||
fields = '__all__'
|
||||
|
||||
db_help_category = forms.CharField(label="Help category", initial='General',
|
||||
help_text="organizes help entries in lists")
|
||||
db_lock_storage = forms.CharField(label="Locks", initial='view:all()',required=False,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue