mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 13:16:28 +08:00
19 lines
835 B
Text
19 lines
835 B
Text
<div class="modal" id="manage-module-system-notification-modal" tabindex="-1" role="dialog" aria-labelledby="manage-module-system-notification-modal-label">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="sn-icon sn-icon-close"></i></button>
|
|
<h4 class="modal-title" id="manage-module-system-notification-modal-label">
|
|
<%= notification ? notification.modal_title.html_safe : '' %>
|
|
</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
<%= notification ? notification.modal_body.html_safe : '' %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<% if notification %>
|
|
<%= javascript_include_tag 'system_notifications/system_notification_modal' %>
|
|
<% end %>
|