mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 08:21:07 +00:00
Update create-group.jade
This commit is contained in:
parent
7540f6acc9
commit
39eb590299
1 changed files with 8 additions and 9 deletions
|
|
@ -5,22 +5,21 @@ form.form-horizontal(ng-submit='create(newGroup)')
|
|||
.controls
|
||||
input#new-group-name.input-medium.option-content(required, type='text', placeholder='{{text}} Name', ng-model='newGroup.name')
|
||||
.control-group
|
||||
label.control-label(for='new-group-description') Description
|
||||
label.control-label(for='new-group-description')=env.t('description')
|
||||
.controls
|
||||
textarea#new-group-description.option-content(cols='3', placeholder='Description', ng-model='newGroup.description')
|
||||
textarea#new-group-description.option-content(cols='3', placeholder=env.t('description'), ng-model='newGroup.description')
|
||||
.control-group(ng-show='type=="guild"')
|
||||
.controls
|
||||
label.radio
|
||||
input(type='radio', name='new-group-privacy', value='public', ng-model='newGroup.privacy')
|
||||
| Public
|
||||
=env.t('public')
|
||||
label.radio
|
||||
input(type='radio', name='new-group-privacy', value='private', ng-model='newGroup.privacy')
|
||||
| Invite Only
|
||||
input.btn(type='submit', ng-disabled='!newGroup.privacy && !newGroup.name', value='Create')
|
||||
span.gem-cost 4 Gems
|
||||
=env.t('inviteOnly')
|
||||
input.btn(type='submit', ng-disabled='!newGroup.privacy && !newGroup.name', value=env.t('create'))
|
||||
span.gem-cost '4' + =env.t('gems')
|
||||
p
|
||||
small
|
||||
| The Gem cost promotes high quality Guilds, and is transferred into your Guild's bank for use as prizes in Guild Challenges!
|
||||
small=env.t('gemcost')
|
||||
.control-group(ng-show='type=="party"')
|
||||
.controls
|
||||
input.btn(type='submit', value='Create')
|
||||
input.btn(type='submit', value=env.t('create'))
|
||||
|
|
|
|||
Loading…
Reference in a new issue