mirror of https://github.com/zulip/zulip.git
Clean alert_word_settings_item handlebar to use 4 space indents.
This commit is contained in:
parent
11c2ef0f49
commit
f73df2a882
|
@ -1,39 +1,39 @@
|
|||
{{! Alert word in the settings page that can be removed }}
|
||||
<li class="alert-word-item" data-word='{{word}}'>
|
||||
{{#if editing}}
|
||||
<div class="alert-word-settings-form">
|
||||
<div class="add-new-alert-word-box grey-bg">
|
||||
<form id="create_alert_word_form" class="form-horizontal no-padding">
|
||||
<h4 class="new-alert-word-section-title light no-margin">{{t "Add a new alert word"}}</h4>
|
||||
<div class="new-alert-word-form">
|
||||
<div class="input-group">
|
||||
<label for="create_alert_word_name">{{t "New alert word" }}</label>
|
||||
<input type="text" name="alert_word_name" id="create_alert_word_name" class="required"
|
||||
maxlength=100 placeholder="{{t 'Alert Word' }}" value="" />
|
||||
</div>
|
||||
<div class="alert alert-danger" id="empty_alert_word_error" role="alert">
|
||||
<button type="button" class="close close-empty-alert-word-error" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
<span>{{t "Alert words can't be empty!"}}</span>
|
||||
</div>
|
||||
<button class="button sea-green add-alert-word" id="create_alert_word_button" type="button">
|
||||
{{t 'Add alert word'}}
|
||||
</button>
|
||||
<div class="alert-word-settings-form">
|
||||
<div class="add-new-alert-word-box grey-bg">
|
||||
<form id="create_alert_word_form" class="form-horizontal no-padding">
|
||||
<h4 class="new-alert-word-section-title light no-margin">{{t "Add a new alert word"}}</h4>
|
||||
<div class="new-alert-word-form">
|
||||
<div class="input-group">
|
||||
<label for="create_alert_word_name">{{t "New alert word" }}</label>
|
||||
<input type="text" name="alert_word_name" id="create_alert_word_name" class="required"
|
||||
maxlength=100 placeholder="{{t 'Alert Word' }}" value="" />
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="alert alert-danger" id="empty_alert_word_error" role="alert">
|
||||
<button type="button" class="close close-empty-alert-word-error" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
<span>{{t "Alert words can't be empty!"}}</span>
|
||||
</div>
|
||||
<button class="button sea-green add-alert-word" id="create_alert_word_button" type="button">
|
||||
{{t 'Add alert word'}}
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{{else}}
|
||||
<div class="alert-word-information-box list-container">
|
||||
<div class="alert_word_listing">
|
||||
<span class="value">{{word}}</span>
|
||||
</div>
|
||||
<div class="edit-alert-word-buttons">
|
||||
<button type="submit" class="button small btn-small btn-danger remove-alert-word" title="{{t 'Delete Alert Word' }}" data-word="{{word}}">
|
||||
<i class="icon-vector-trash"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div class="alert-word-information-box list-container">
|
||||
<div class="alert_word_listing">
|
||||
<span class="value">{{word}}</span>
|
||||
</div>
|
||||
<div class="edit-alert-word-buttons">
|
||||
<button type="submit" class="button small btn-small btn-danger remove-alert-word" title="{{t 'Delete Alert Word' }}" data-word="{{word}}">
|
||||
<i class="icon-vector-trash"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
{{/if}}
|
||||
</li>
|
||||
|
|
Loading…
Reference in New Issue