ui/lib/shared/addon/components/modal-auditlog-info/template.hbs

20 lines
636 B
Handlebars

<div>
<h2 class="alert-header">{{t 'modalAuditlogInfo.header'}}</h2>
<hr>
</div>
<div class="mb-15" style="max-height: 400px; overflow: auto;">
<h3>{{t 'modalAuditlogInfo.request'}}</h3>
<div style="max-height: 400px; overflow: auto;">
{{code-block language="javascript" code=requestJSON}}
</div>
</div>
<div class="mb-15">
<h3>{{t 'modalAuditlogInfo.response'}}</h3>
<div style="max-height: 400px; overflow: auto;">
{{code-block language="javascript" code=responseJSON}}
</div>
</div>
<div class="footer-actions">
<button class="btn bg-primary" {{action 'dismiss'}}>{{t 'generic.closeModal'}}</button>
</div>