2015-04-02 10:32:43 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
|
|
{% include 'nav_cat_bar.html' %}
|
|
|
|
<!--<h3 class="text-center">项目发布申请</h3>-->
|
|
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-10">
|
|
|
|
<div id="add_asset" class="ibox float-e-margins">
|
|
|
|
<div class="ibox-content">
|
2015-04-04 04:47:07 +00:00
|
|
|
<h2 id="jumpTo" class="text-center text-info"></h2>
|
2015-04-02 10:32:43 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2015-04-04 04:47:07 +00:00
|
|
|
<script>
|
|
|
|
function countDown(secs,surl){
|
|
|
|
var jumpTo = document.getElementById('jumpTo');
|
|
|
|
jumpTo.innerHTML='{{ smg }}......' + secs + '秒';
|
|
|
|
if(--secs>0){
|
|
|
|
setTimeout("countDown("+secs+",'"+surl+"')",1000);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
location.href=surl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
countDown(10,'/');
|
2015-04-02 10:32:43 +00:00
|
|
|
</script>
|
2015-04-04 04:47:07 +00:00
|
|
|
|
2015-04-02 10:32:43 +00:00
|
|
|
{% endblock content %}
|