mirror of https://github.com/jumpserver/jumpserver
18 lines
753 B
HTML
18 lines
753 B
HTML
![]() |
{% extends 'base.html' %}
|
|||
|
{% block content %}
|
|||
|
|
|||
|
<div id="myModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
|||
|
<div class="modal-header">
|
|||
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|||
|
<h3 id="myModalLabel">日志汇总</h3>
|
|||
|
</div>
|
|||
|
<div class="modal-body">
|
|||
|
<p>弹出层…</p>
|
|||
|
</div>
|
|||
|
<div class="modal-footer">
|
|||
|
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
|
|||
|
<button class="btn btn-primary">Save changes</button>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
{% end block %}
|