zulip/static/templates/settings/settings-save-discard-widge...

22 lines
882 B
Handlebars
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{#if is_admin }}
<div class="save-button-controls hide">
<div class="input-group organization-submission subsection-changes-save">
<div class="icon-button button primary save-button" type="button" id="org-submit-{{section_name}}" data-status="save">
<span class="fa fa-spinner fa-spin icon-button-loading"></span>
<span class="fa fa-check icon-button-icon"></span>
<span class="icon-button-text">
{{t 'Save changes' }}
</span>
</div>
</div>
<div class="input-group subsection-changes-discard">
<div class="icon-button button discard-button" type="button" id="org-discard-{{section_name}}">
<span class="icon-button-icon">×</span>
<span class="icon-button-text">
{{t 'Discard' }}
</span>
</div>
</div>
</div>
{{/if}}