Files
DzzOffice/admin/system/template/updatecache.htm
2024-07-06 17:49:14 +08:00

60 lines
2.5 KiB
HTML

<!--{template common/header_simple_start}-->
<!--{template common/header_simple_end}-->
<!--{template common/commer_header}-->
<div class="bs-container clearfix">
<div class="bs-left-container clearfix">
<!--{template left}-->
</div>
<div class="left-drager">
<div class="left-drager-op">
<div class="left-drager-sub"></div>
</div>
</div>
<div class="bs-main-container clearfix">
<div class="main-content">
<div class="well well-sm">
<!--{if $step==1}-->
<form method="post" class="form-horizontal form-horizontal-left" action="{MOD_URL}&op=updatecache&step=2">
<input name="formhash" value="{VERHASH}" type="hidden">
<div class="form-check form-check-inline">
<input name="type[]" value="data" checked class="form-check-input" type="checkbox">
<label class="form-check-label" for="inlineRadio3">{lang tools_updatecache_data}</label>
</div>
<div class="form-check form-check-inline">
<input name="type[]" value="tpl" id="tplcache" checked class="form-check-input" type="checkbox">
<label class="form-check-label" for="inlineRadio3">{lang tools_updatecache_tpl}</label>
</div>
<dl>
<input class="btn btn-primary" name="confirmed" value="{lang confirms}" type="submit">
</dl>
</form>
<!--{elseif $step==2}-->
<div class="text-center" style="margin:20px 0;">
<h2 class="text-success ml20">{lang tools_updatecache_waiting}</h2>
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100" style="width:0%"><span class="sr-only">100% Complete</span></div>
</div>
</div>
<dl><a href="{MOD_URL}&op=updatecache&step=3&type=data_tpl" class="btn btn-primary">{lang message_redirect}</a></dl>
<script type="text/javascript">
jQuery('.progress-bar').animate({ width: '100%' }, 2000, function() {
window.location.href = '{MOD_URL}&op=updatecache&step=3&type=data_tpl';
});
</script>
<!--{elseif $step==3}-->
<h2 class="text-primary ml20 text-center">{lang update_cache_succeed}</h2>
<script type="text/javascript">
window.setTimeout(function() { location.href = '{MOD_URL}&op=updatecache'; }, 5000);
</script>
<!--{/if}-->
</div>
<div class="alert alert-warning">
<h5>{lang board_message}</h5>
<ul class="help-block">
{lang tools_updatecache_tips}
</ul>
</div>
</div>
</div>
</div>
<!--{template common/footer_simple}-->