40 Zeilen
1.6 KiB
Twig
40 Zeilen
1.6 KiB
Twig
{% set iRefreshTime = iRefreshTime|default(0) %}
|
|
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset={{ sCharSet }}">
|
|
<title>{{ sTitle }}</title>
|
|
{% if sRefreshUrl %}
|
|
<meta http-equiv="refresh" content="{{ iRefreshTime }}; URL={{ sRefreshUrl }}">
|
|
{% endif %}
|
|
</head>
|
|
<body style='font: 12px Trebuchet MS,Tahoma,Verdana,Arial,Helvetica,sans-serif;'>
|
|
|
|
{% if sMessage %}
|
|
<br>
|
|
<br>
|
|
{{ sMessage|raw }}
|
|
<br>
|
|
{% endif %}
|
|
|
|
{% if iProgressPercent %}
|
|
<br>
|
|
<div style='position: relative; background-color:#B4D2F5; border:1px solid #000000; height:15px; margin:auto auto auto 10px; width:100px;'>
|
|
<div style='background-color:#1A4782; height:15px; width:{{ iProgressPercent }}px;'></div>
|
|
<div style='border-style: none; color: white; line-height:15px; position:absolute; text-align:center; top:0; width:100px;'>
|
|
{% set sText = "D3_EXTSEARCH_MAIN_GENERATOR_PROCESSING2"|translate %}
|
|
{{ sText|format(iProgressPercent)|raw }}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if blWait %}
|
|
<br>
|
|
<span style='font-weight: bold;'>{{ translate({ ident: "D3_EXTSEARCH_MAIN_GENERATOR_WAIT" }) }}</span>
|
|
{% else %}
|
|
<br>
|
|
<a href='#' onClick='window.close();'>{{ translate({ ident: "D3_EXTSEARCH_MAIN_GENERATOR_CLOSEWND" }) }}</a>
|
|
{% endif %}
|
|
</body>
|
|
</html> |