2014-03-05 07:52:20 -05:00
|
|
|
<div class="badges">
|
|
|
|
|
|
|
|
<div class='content-list span6'>
|
|
|
|
<h3>{{i18n admin.badges.title}}</h3>
|
|
|
|
<ul>
|
|
|
|
{{#each}}
|
|
|
|
<li>
|
|
|
|
<a {{action selectBadge this}} {{bind-attr class="selected:active"}}>
|
2014-07-29 18:56:46 -04:00
|
|
|
<span {{bind-attr class=":user-badge badgeTypeClassName" data-badge-name="name" title="displayDescription"}}>
|
|
|
|
<i {{bind-attr class=":fa icon"}}></i>
|
2014-03-05 07:52:20 -05:00
|
|
|
{{displayName}}
|
2014-07-29 18:56:46 -04:00
|
|
|
</span>
|
2014-03-05 07:52:20 -05:00
|
|
|
{{#if newBadge}}
|
2014-05-19 01:20:57 -04:00
|
|
|
<span class="list-badge">{{i18n filters.new.lower_title}}</span>
|
2014-03-05 07:52:20 -05:00
|
|
|
{{/if}}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ul>
|
2014-05-23 22:33:46 -04:00
|
|
|
<button {{action createNewBadge}} {{bind-attr disabled=newBadgeExists}} class='btn'><i class="fa fa-plus"></i>{{i18n admin.badges.new}}</button>
|
2014-03-05 07:52:20 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{#if selectedItem}}
|
2014-05-19 00:29:12 -04:00
|
|
|
{{#with selectedItem controller='adminBadge'}}
|
2014-03-19 01:13:38 -04:00
|
|
|
<div class='current-badge span13'>
|
2014-03-05 07:52:20 -05:00
|
|
|
<form class="form-horizontal">
|
|
|
|
<div>
|
|
|
|
<label for="name">{{i18n admin.badges.name}}</label>
|
2014-07-16 22:25:16 -04:00
|
|
|
{{input type="text" name="name" value=name}}
|
2014-03-05 07:52:20 -05:00
|
|
|
</div>
|
|
|
|
|
2014-05-19 00:29:12 -04:00
|
|
|
{{#if showDisplayName}}
|
|
|
|
<div>
|
|
|
|
<strong>{{i18n admin.badges.display_name}}</strong>
|
|
|
|
{{displayName}}
|
|
|
|
</div>
|
2014-03-05 07:52:20 -05:00
|
|
|
{{/if}}
|
|
|
|
|
2014-06-10 03:32:22 -04:00
|
|
|
<div>
|
|
|
|
<label for="name">{{i18n admin.badges.icon}}</label>
|
2014-07-16 22:25:16 -04:00
|
|
|
{{input type="text" name="name" value=icon}}
|
2014-06-10 03:32:22 -04:00
|
|
|
</div>
|
|
|
|
|
2014-03-05 07:52:20 -05:00
|
|
|
<div>
|
|
|
|
<label for="badge_type_id">{{i18n admin.badges.badge_type}}</label>
|
|
|
|
{{view Ember.Select name="badge_type_id" value=badge_type_id
|
|
|
|
content=controller.badgeTypes
|
|
|
|
optionValuePath="content.id"
|
2014-05-19 00:29:12 -04:00
|
|
|
optionLabelPath="content.name"
|
|
|
|
disabled=readOnly}}
|
2014-03-05 07:52:20 -05:00
|
|
|
</div>
|
|
|
|
|
2014-07-21 21:11:30 -04:00
|
|
|
<div>
|
|
|
|
<label for="badge_grouping_id">{{i18n admin.badges.badge_grouping}}</label>
|
|
|
|
{{view Ember.Select name="badge_grouping_id" value=badge_grouping_id
|
|
|
|
content=controller.badgeGroupings
|
|
|
|
optionValuePath="content.id"
|
2014-07-24 04:28:09 -04:00
|
|
|
optionLabelPath="content.name"}}
|
2014-07-27 04:22:01 -04:00
|
|
|
<button {{action editGroupings controller.badgeGroupings}}><i class="fa fa-pencil"></i></button>
|
2014-07-21 21:11:30 -04:00
|
|
|
</div>
|
|
|
|
|
2014-07-24 04:28:09 -04:00
|
|
|
|
2014-03-05 07:52:20 -05:00
|
|
|
<div>
|
|
|
|
<label for="description">{{i18n admin.badges.description}}</label>
|
|
|
|
{{#if controller.canEditDescription}}
|
|
|
|
{{textarea name="description" value=description}}
|
|
|
|
{{else}}
|
2014-05-21 03:22:42 -04:00
|
|
|
{{textarea name="description" value=displayDescription disabled=true}}
|
2014-03-05 07:52:20 -05:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
|
2014-07-24 04:28:09 -04:00
|
|
|
<div>
|
|
|
|
<label for="query">{{i18n admin.badges.query}}</label>
|
|
|
|
{{textarea name="query" value=query disabled=readOnly}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{#if hasQuery}}
|
|
|
|
|
|
|
|
<a href="/admin/badges/preview" {{action preview this}}>{{i18n admin.badges.preview}}</a>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<span>
|
|
|
|
{{input type="checkbox" checked=auto_revoke disabled=readOnly}}
|
|
|
|
{{i18n admin.badges.auto_revoke}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<span>
|
|
|
|
{{input type="checkbox" checked=target_posts disabled=readOnly}}
|
|
|
|
{{i18n admin.badges.target_posts}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<label for="trigger">{{i18n admin.badges.trigger}}</label>
|
|
|
|
{{view Ember.Select name="trigger" value=trigger
|
|
|
|
content=controller.badgeTriggers
|
|
|
|
optionValuePath="content.id"
|
|
|
|
optionLabelPath="content.name"
|
|
|
|
disabled=readOnly}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{/if}}
|
|
|
|
|
2014-05-19 01:20:57 -04:00
|
|
|
<div>
|
|
|
|
<span>
|
2014-07-29 18:46:46 -04:00
|
|
|
{{input type="checkbox" checked=allow_title}}
|
2014-05-19 01:20:57 -04:00
|
|
|
{{i18n admin.badges.allow_title}}
|
|
|
|
</span>
|
|
|
|
</div>
|
2014-04-25 14:25:29 -04:00
|
|
|
|
2014-05-21 03:22:42 -04:00
|
|
|
<div>
|
|
|
|
<span>
|
|
|
|
{{input type="checkbox" checked=multiple_grant disabled=readOnly}}
|
|
|
|
{{i18n admin.badges.multiple_grant}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
2014-07-03 03:44:16 -04:00
|
|
|
<div>
|
|
|
|
<span>
|
|
|
|
{{input type="checkbox" checked=listable disabled=readOnly}}
|
|
|
|
{{i18n admin.badges.listable}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
2014-07-24 04:28:09 -04:00
|
|
|
<div>
|
|
|
|
<span>
|
|
|
|
{{input type="checkbox" checked=show_posts disabled=readOnly}}
|
|
|
|
{{i18n admin.badges.show_posts}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
2014-07-14 03:40:01 -04:00
|
|
|
<div>
|
|
|
|
<span>
|
|
|
|
{{input type="checkbox" checked=enabled}}
|
|
|
|
{{i18n admin.badges.enabled}}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class='buttons'>
|
|
|
|
<button {{action save}} {{bind-attr disabled=controller.disableSave}} class='btn btn-primary'>{{i18n admin.badges.save}}</button>
|
|
|
|
<span class='saving'>{{savingStatus}}</span>
|
|
|
|
{{#unless readOnly}}
|
2014-05-19 00:29:12 -04:00
|
|
|
<a {{action destroy}} class='delete-link'>{{i18n admin.badges.delete}}</a>
|
2014-07-14 03:40:01 -04:00
|
|
|
{{/unless}}
|
|
|
|
</div>
|
2014-03-05 07:52:20 -05:00
|
|
|
</form>
|
|
|
|
</div>
|
2014-06-27 15:51:41 -04:00
|
|
|
|
2014-07-23 22:39:09 -04:00
|
|
|
{{#if grant_count}}
|
2014-06-27 15:51:41 -04:00
|
|
|
<div class="span13 current-badge-actions">
|
|
|
|
<div>
|
2014-07-23 22:39:09 -04:00
|
|
|
{{#link-to 'badges.show' this}}{{i18n badges.granted count=grant_count}}{{/link-to}}
|
2014-06-27 15:51:41 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-07-23 22:39:09 -04:00
|
|
|
{{/if}}
|
2014-03-05 07:52:20 -05:00
|
|
|
{{/with}}
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</div>
|