Tweak byjove project generator form
This commit is contained in:
parent
ae38e09d1b
commit
dd3f91cf0c
|
@ -370,16 +370,25 @@ class GeneratedProjectView(MasterView):
|
|||
|
||||
f.set_grouping([
|
||||
("Naming", [
|
||||
'system_name',
|
||||
'name',
|
||||
'slug',
|
||||
]),
|
||||
])
|
||||
|
||||
# system_name
|
||||
f.set_default('system_name', "Okay Then")
|
||||
f.set_helptext('system_name',
|
||||
"Name of overall system to which mobile app belongs.")
|
||||
|
||||
# name
|
||||
f.set_label('name', "Mobile App Name")
|
||||
f.set_default('name', "Okay Then Mobile")
|
||||
f.set_helptext('name', "Display name for the mobile app.")
|
||||
|
||||
# slug
|
||||
f.set_default('slug', "okay-then-mobile")
|
||||
f.set_helptext('slug', "Used for NPM-compatible project name etc.")
|
||||
|
||||
def configure_form_fabric(self, f):
|
||||
|
||||
|
|
Loading…
Reference in a new issue