You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
1 year ago
|
<%+xterm/embed%>
|
||
|
<link rel="stylesheet" href="<%=resource%>/tasks/tasks.css<%# ?v=PKG_VERSION %>">
|
||
|
<script src="<%=resource%>/tasks/tasks.js<%# ?v=PKG_VERSION %>"></script>
|
||
|
<%
|
||
|
local i18n = {}
|
||
|
local function tr(str)
|
||
|
i18n[str]=translate(str)
|
||
|
end
|
||
|
tr("Stop running task?")
|
||
|
tr("Stopped at:")
|
||
|
tr("Finished at:")
|
||
|
tr("Failed at:")
|
||
|
tr("Lost login status")
|
||
|
tr("Fetch log failed, retrying...")
|
||
|
tr("Task does not exist or has been deleted")
|
||
|
-%>
|
||
|
<script>
|
||
|
window.taskd.csrfToken="<%=token%>";
|
||
|
window.taskd.i18n=<% luci.http.write_json(i18n) %>;
|
||
|
window.taskd.dialog_template=`
|
||
|
<div id="tasks_dialog">
|
||
|
<div class="dialog-title-bar">
|
||
|
<span class="dialog-title" id="tasks_id"></span>
|
||
|
<span class="dialog-icons">
|
||
|
<span class="dialog-icon dialog-icon-close" title="<%:Stop and Remove%>"></span>
|
||
|
<span class="dialog-icon dialog-icon-min" title="<%:Hide%>"></span>
|
||
|
</span>
|
||
|
</div>
|
||
|
<div class="dialog-content">
|
||
|
<div id="tasks_xterm_log"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
`;
|
||
|
</script>
|