discourse/app/assets/javascripts/admin/addon/templates/admin-badges/award.hbs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

96 lines
2.9 KiB
Handlebars
Raw Normal View History

<DSection @class="award-badge">
2020-01-14 01:44:22 +08:00
<h1>{{i18n "admin.badges.mass_award.title"}}</h1>
<p>{{i18n "admin.badges.mass_award.description"}}</p>
{{#if this.model}}
2020-01-14 01:44:22 +08:00
<form class="form-horizontal">
2021-09-20 21:52:03 +08:00
<div class="badge-preview control-group">
{{#if this.model}}
{{icon-or-image this.model}}
<span class="badge-display-name">{{this.model.name}}</span>
2020-01-14 01:44:22 +08:00
{{else}}
<span class="badge-placeholder">{{i18n
"admin.badges.mass_award.no_badge_selected"
}}</span>
2020-01-14 01:44:22 +08:00
{{/if}}
</div>
2021-09-20 21:52:03 +08:00
<div class="control-group">
<h4>{{i18n "admin.badges.mass_award.upload_csv"}}</h4>
<input
type="file"
id="massAwardCSVUpload"
accept=".csv"
onchange={{action "updateFileSelected"}}
/>
2020-01-14 01:44:22 +08:00
</div>
2021-09-20 21:52:03 +08:00
<div class="control-group">
<label>
<Input @type="checkbox" @checked={{this.replaceBadgeOwners}} />
{{i18n "admin.badges.mass_award.replace_owners"}}
</label>
{{#if this.model.multiple_grant}}
<label class="grant-existing-holders">
<Input
@type="checkbox"
@checked={{this.grantExistingHolders}}
class="grant-existing-holders-checkbox"
/>
{{i18n "admin.badges.mass_award.grant_existing_holders"}}
</label>
{{/if}}
</div>
<DButton
@class="btn-primary"
@action={{action "massAward"}}
@type="submit"
@disabled={{this.massAwardButtonDisabled}}
@icon="certificate"
@label="admin.badges.mass_award.perform"
/>
<LinkTo @route="adminBadges.index" class="btn btn-normal">
{{d-icon "times"}}
<span>{{i18n "cancel"}}</span>
</LinkTo>
2020-01-14 01:44:22 +08:00
</form>
{{#if this.saving}}
{{i18n "uploading"}}
{{/if}}
{{#if this.resultsMessage}}
<p>
{{#if this.success}}
{{d-icon "check" class="bulk-award-status-icon success"}}
{{else}}
{{d-icon "times" class="bulk-award-status-icon failure"}}
{{/if}}
{{this.resultsMessage}}
</p>
{{#if this.unmatchedEntries.length}}
<p>
{{d-icon
"exclamation-triangle"
class="bulk-award-status-icon failure"
}}
<span>
{{#if this.unmatchedEntriesTruncated}}
{{i18n
"admin.badges.mass_award.csv_has_unmatched_users_truncated_list"
count=this.unmatchedEntriesCount
}}
{{else}}
{{i18n "admin.badges.mass_award.csv_has_unmatched_users"}}
{{/if}}
</span>
</p>
<ul>
{{#each this.unmatchedEntries as |entry|}}
<li>{{entry}}</li>
{{/each}}
</ul>
{{/if}}
{{/if}}
2020-01-14 01:44:22 +08:00
{{else}}
<span class="badge-required">{{i18n
"admin.badges.mass_award.no_badge_selected"
}}</span>
2020-01-14 01:44:22 +08:00
{{/if}}
</DSection>