2020-02-05 20:54:30 +09:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
2021-02-11 18:08:47 +09:00
|
|
|
<link rel="stylesheet" href="{{ url_for('.static', filename='%s.css' % arg['template_name']) }}">
|
2020-10-05 18:02:43 +09:00
|
|
|
|
2020-10-11 12:23:38 +09:00
|
|
|
{{ macros.m_row_start() }}
|
|
|
|
|
{{ macros.m_button('all_stop_btn', '전체 중지') }}
|
|
|
|
|
{{ macros.m_row_end() }}
|
|
|
|
|
<div class="d-inline-block"></div>
|
|
|
|
|
|
2021-02-11 18:08:47 +09:00
|
|
|
<table class="table table-sm tableRowHover">
|
2020-10-05 18:02:43 +09:00
|
|
|
<thead>
|
2021-02-11 18:08:47 +09:00
|
|
|
<tr>
|
2021-04-25 17:27:27 +09:00
|
|
|
<th style="width: 4%">IDX</th>
|
2021-02-11 18:08:47 +09:00
|
|
|
<th style="width: 8%">Plugin</th>
|
|
|
|
|
<th style="width: 10%">시작시간</th>
|
2021-04-25 17:27:27 +09:00
|
|
|
<th style="width: 14%">타입</th>
|
|
|
|
|
<th style="width: 29%">제목</th>
|
2021-02-11 18:08:47 +09:00
|
|
|
<th style="width: 8%">상태</th>
|
2021-04-25 17:27:27 +09:00
|
|
|
<th style="width: 11%">진행률</th>
|
2021-02-11 18:08:47 +09:00
|
|
|
<th style="width: 8%">진행시간</th>
|
|
|
|
|
<th style="width: 8%">Action</th>
|
|
|
|
|
</tr>
|
2020-10-05 18:02:43 +09:00
|
|
|
</thead>
|
2021-02-05 21:35:49 +09:00
|
|
|
<tbody id="list_tbody"></tbody>
|
2020-10-05 18:02:43 +09:00
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
"use strict";
|
|
|
|
|
const package_name = '{{ arg["package_name"] }}';
|
|
|
|
|
</script>
|
2021-02-11 18:08:47 +09:00
|
|
|
<script src="{{ url_for('.static', filename='%s.js' % arg['template_name']) }}"></script>
|
2020-02-05 20:54:30 +09:00
|
|
|
|
2020-07-23 23:00:02 +09:00
|
|
|
{% endblock %}
|