Sha256: 0eb1fe22375c466409a92b20c1add3b8167669c41e390bd2b1ae62baf93afdb9
Contents?: true
Size: 1.42 KB
Versions: 1
Compression:
Stored size: 1.42 KB
Contents
<div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 id="modal_label"> <span>{{event.client}}</span><br /> <small>{{event.check}}</small> </h4> </div> <div class="modal-body"> <h3 class="section_title">event data</h3> <div class="well"> {{#each event}} {{#if this}} <strong>{{@key}}</strong> <span class="modal_value">{{strip this}}</span><br/> {{/if}} {{/each}} </div> <h3 class="section_title">client data</h3> <div class="well"> {{#each client}} {{#if this}} <strong>{{@key}}</strong> <span class="modal_value">{{this}}</span><br /> {{/if}} {{/each}} </div> </div> <div class="modal-footer"> <button id="silence_client" class="btn btn-danger"> {{#if client.silenced}} <i class="icon-volume-off icon-white" /> <span> Un-silence Client</span> {{else}} <i class="icon-volume-up icon-white" /> <span> Silence Client</span> {{/if}} </button> <button id="silence_check" class="btn btn-danger"> {{#if event.silenced}} <i class="icon-volume-off icon-white" /> <span> Un-silence Check</span> {{else}} <i class="icon-volume-up icon-white" /> <span> Silence Check</span> {{/if}} </button> <button id="resolve_check" class="btn btn-danger"> <i class="icon-ok icon-white" /> <span> Resolve</span> </button> </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sensu-dashboard-0.10.1 | lib/sensu-dashboard/assets/javascripts/templates/events/modal.hbs |