diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-06-11 00:35:30 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-06-11 00:35:30 +0200 |
| commit | eb5136e2023fb0999995befff60624d5d4c51c94 (patch) | |
| tree | 6129655ffca1afdcfedca826c1d47609e6292b69 /cli/app/sql/models/page.py | |
| parent | 9a1cac006a80098f90f2febf751632c7e5ffbfa0 (diff) | |
fixing bugs
Diffstat (limited to 'cli/app/sql/models/page.py')
| -rw-r--r-- | cli/app/sql/models/page.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/app/sql/models/page.py b/cli/app/sql/models/page.py index 4ca758d..2f7065b 100644 --- a/cli/app/sql/models/page.py +++ b/cli/app/sql/models/page.py @@ -51,6 +51,6 @@ class Page(Base): class PageForm(ModelForm): class Meta: model = Page - exclude = ['settings', 'created_at', 'updated_at'] + exclude = ['description', 'settings', 'created_at', 'updated_at'] def get_session(): return Session() |
