From f05c12aad0b01f80b5fa5e02df85cfc48d74f8b3 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Fri, 12 Jan 2018 15:12:40 +0000 Subject: [PATCH] Add help_text to the inline panel so editors can change it --- opentech/apply/categories/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/opentech/apply/categories/models.py b/opentech/apply/categories/models.py index 8b223aa5c..4a8ea40e5 100644 --- a/opentech/apply/categories/models.py +++ b/opentech/apply/categories/models.py @@ -24,6 +24,7 @@ class Category(ClusterableModel): panels = [ FieldPanel('name'), + FieldPanel('help_text'), InlinePanel('options', label='Options'), ] -- GitLab