mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
683cb28099
This pr replaces `{{{ }}}` usage by a {{html-safe}} helper. While it doesn't solve the underlying issue, it gives us a path forward without risking breaking too much existing behavior. Also introduces an htmlSafe computed macro: ``` import { htmlSafe } from "discourse/lib/computed"; htmlDescription: htmlSafe("description") ``` Overtime {{html-safe}} usage should be removed and moved to components properties or specialized components/helpers.
40 lines
1.3 KiB
Handlebars
40 lines
1.3 KiB
Handlebars
{{#d-section class="award-badge"}}
|
|
<h1>{{i18n 'admin.badges.mass_award.title'}}</h1>
|
|
<p>{{i18n 'admin.badges.mass_award.description'}}</p>
|
|
|
|
{{#if model}}
|
|
<form class="form-horizontal">
|
|
<div class='badge-preview'>
|
|
{{#if model}}
|
|
{{icon-or-image model}}
|
|
<span class="badge-display-name">{{model.name}}</span>
|
|
{{else}}
|
|
<span class='badge-placeholder'>{{i18n 'admin.badges.mass_award.no_badge_selected'}}</span>
|
|
{{/if}}
|
|
</div>
|
|
<div>
|
|
<h4>{{i18n 'admin.badges.mass_award.upload_csv'}}</h4>
|
|
<input type='file' id='massAwardCSVUpload' accept='.csv'>
|
|
</div>
|
|
<div>
|
|
<label>
|
|
{{input type="checkbox" checked=replaceBadgeOwners}}
|
|
{{i18n 'admin.badges.mass_award.replace_owners'}}
|
|
</label>
|
|
</div>
|
|
{{d-button
|
|
class="btn-primary"
|
|
action=(action 'massAward')
|
|
type="submit"
|
|
disabled=saving
|
|
label="admin.badges.mass_award.perform"}}
|
|
{{#link-to 'adminBadges.index' class="btn btn-danger"}}
|
|
{{d-icon "times"}}
|
|
<span>{{i18n 'cancel'}}</span>
|
|
{{/link-to}}
|
|
</form>
|
|
{{else}}
|
|
<span class='badge-required'>{{i18n 'admin.badges.mass_award.no_badge_selected'}}</span>
|
|
{{/if}}
|
|
{{/d-section}}
|