mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:40:42 +08:00
56 lines
1.5 KiB
Handlebars
56 lines
1.5 KiB
Handlebars
{{#d-modal-body title="admin.badges.preview.modal_title" class="badge-query-preview"}}
|
|
{{#if errors}}
|
|
<p class="error-header">{{i18n "admin.badges.preview.sql_error_header"}}</p>
|
|
|
|
<pre class="badge-errors">{{errors}}</pre>
|
|
|
|
{{!--
|
|
TODO we want some help pages for this, link to those instead
|
|
<p>
|
|
{{i18n "admin.badges.preview.error_help"}}
|
|
</p>
|
|
<ul>
|
|
<li><a href="https://meta.discourse.org/t/triggered-custom-badge-queries/19336">https://meta.discourse.org/t/triggered-custom-badge-queries/19336</a></li>
|
|
</ul>
|
|
--}}
|
|
|
|
{{else}}
|
|
<p class="grant-count">
|
|
{{#if count}}
|
|
{{html-safe (i18n "admin.badges.preview.grant_count" count=count)}}
|
|
{{else}}
|
|
{{html-safe (i18n "admin.badges.preview.no_grant_count")}}
|
|
{{/if}}
|
|
</p>
|
|
|
|
{{#if countWarning}}
|
|
<div class="count-warning">
|
|
<p class="heading">
|
|
{{d-icon "exclamation-triangle"}}
|
|
{{i18n "admin.badges.preview.bad_count_warning.header"}}
|
|
</p>
|
|
<p class="body">
|
|
{{i18n "admin.badges.preview.bad_count_warning.text"}}
|
|
</p>
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{#if sample}}
|
|
<p class="sample">
|
|
{{i18n "admin.badges.preview.sample"}}
|
|
</p>
|
|
<ul>
|
|
{{#each processedSample as |html|}}
|
|
<li>{{html-safe html}}</li>
|
|
{{/each}}
|
|
</ul>
|
|
{{/if}}
|
|
|
|
{{#if hasQueryPlan}}
|
|
<div class="badge-query-plan">
|
|
{{html-safe queryPlanHtml}}
|
|
</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
{{/d-modal-body}}
|