source: extensions/BatchDownloader/template/view.tpl @ 17492

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

better integration in simple and stripped

File size: 1.2 KB
Line 
1{* <!-- Menubar & titrePage --> *}
2{if $themeconf.name == "stripped" or $themeconf.parent == "stripped"}
3  {include file=$BATCH_DOWNLOAD_ABS_PATH|@cat:'template/themes/stripped.tpl'}
4  {assign var="clear" value="true"}
5{elseif $themeconf.name == "simple-grey" or $themeconf.parent == "simple"}
6  {include file=$BATCH_DOWNLOAD_ABS_PATH|@cat:'template/themes/simple.tpl'}
7  {assign var="clear" value="true"}
8{else}
9  {include file=$BATCH_DOWNLOAD_ABS_PATH|@cat:'template/themes/default.tpl'}
10{/if}
11
12{if isset($errors) or not empty($infos)}
13{include file='infos_errors.tpl'}
14{/if}
15
16{if $set}
17<fieldset>
18  <h3>{$set.NAME}</h3>
19  {if $set.COMMENT}<blockquote>{$set.COMMENT}</blockquote>{/if}
20  {assign var="nb_images" value='<span class="nbImagesSet">'|@cat:$set.NB_IMAGES|@cat:'</span>'}
21  {'%d photos'|@translate|replace:'%d':'%s'|sprintf:$nb_images}
22  <br>
23  <b><a href="{$U_INIT_ZIP}" rel="nofollow">{'Return to download page'|@translate} →</a></b>
24</fieldset>
25
26
27{if !empty($THUMBNAILS)}
28<ul class="thumbnails" id="thumbnails">
29{$THUMBNAILS}
30</ul>
31{else}
32{'This download set is empty'|@translate}
33{/if}
34
35{if !empty($navbar)}{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
36{/if}
37
38{if $clear}<div style="clear: both;"></div>{/if}
39</div>{* <!-- content --> *}
Note: See TracBrowser for help on using the repository browser.