source: extensions/BatchDownloader/template/init_zip.tpl @ 16626

Last change on this file since 16626 was 16626, checked in by mistic100, 12 years ago

-better support of Stripped

File size: 1.8 KB
Line 
1{combine_css path=$BATCH_DOWNLOAD_PATH|@cat:"template/style.css"}
2
3{if $set.U_DOWNLOAD}
4{footer_script}
5setTimeout("document.location.href = '{$set.U_DOWNLOAD}';", 1000);
6{/footer_script}
7{/if}
8
9{if $themeconf.name != "stripped" and $themeconf.parent != "stripped" and $themeconf.name != "simple-grey" and $themeconf.parent != "simple"}
10  {$MENUBAR}
11{else}
12  {assign var="intern_menu" value="true"}
13{/if}
14<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
15{if $intern_menu}{$MENUBAR}{/if}
16
17<div class="titrePage">
18  <ul class="categoryActions"></ul>
19  <h2>{$TITLE}</h2>
20</div>{* <!-- titrePage --> *}
21
22{if isset($errors) or not empty($infos)}
23{include file='infos_errors.tpl'}
24{/if}
25
26
27{if $set}
28<fieldset>
29  <legend>{'Download info'|@translate}</legend>
30  <h2>{$set.NAME}</h2>
31  {if $set.COMMENT}<blockquote class="comment">{$set.COMMENT}</blockquote>{/if}
32 
33  <ul class="set-infos">
34    <li class="error">{$elements_error}</li>
35    <li><b>{'%d photos'|@translate|@sprintf:$set.NB_IMAGES}</b>{if $set.U_EDIT_SET}, <a href="{$set.U_EDIT_SET}" rel="nofollow">{'Edit the set'|@translate}</a>{/if}</li>
36    <li><b>{'Estimated size'|@translate}:</b> {$set.TOTAL_SIZE} MB</li>
37    <li><b>{'Estimated number of archives'|@translate}:</b> {$set.NB_ARCHIVES} <i>({'real number of archives can differ'|@translate})</i></li>
38    <li><b>{'Created on'|@translate}:</b> {$set.DATE_CREATION}</li>
39  </ul>
40</fieldset>
41
42<fieldset>
43  <legend>{'Download links'|@translate}</legend>
44 
45  <ul class="download-links">
46    {$set.LINKS}
47    <li class="warning">{'<b>Warning:</b> all files will be deleted within %d hours'|@translate|@sprintf:$archive_timeout}</li>
48  </ul>
49 
50  <a href="{$set.U_CANCEL}" class="cancel-down" onClick="return confirm('{'Are you sure?'|@translate}');">{'Cancel this download'|@translate}</a>
51</fieldset>
52{/if}
53
54</div>{* <!-- content --> *}
Note: See TracBrowser for help on using the repository browser.