source: extensions/UserCollections/template/collection_view.tpl @ 24842

Last change on this file since 24842 was 24421, checked in by mistic100, 11 years ago

new system for shares : password protection, link timeout, management popup + for mails
handle lightbox conflicts
menublock is visible by AMM

File size: 1.7 KB
Line 
1{combine_css path=$USER_COLLEC_PATH|cat:'template/style_collections.css'}
2{include file=$USER_COLLEC_ABS_PATH|cat:'template/thumbnails_colorbox.tpl'}
3
4
5{* <!-- Menubar & titrePage --> *}
6{if $themeconf.name == "stripped" or $themeconf.parent == "stripped"}
7  {include file=$USER_COLLEC_ABS_PATH|@cat:'template/themes/stripped.tpl'}
8  {assign var="clear" value="true"}
9{elseif $themeconf.name == "simple-grey" or $themeconf.parent == "simple"}
10  {include file=$USER_COLLEC_ABS_PATH|@cat:'template/themes/simple.tpl'}
11  {assign var="clear" value="true"}
12{else}
13  {include file=$USER_COLLEC_ABS_PATH|@cat:'template/themes/default.tpl'}
14{/if}
15
16{if isset($errors) or not empty($infos)}
17{include file='infos_errors.tpl'}
18{/if}
19
20{if $UC_MODE == 'password'}
21<form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties">
22  <fieldset>
23    <legend>{'Restricted access'|@translate}</legend>
24
25    <ul>
26      <li>
27        <span class="property">
28          <label for="uc_password">{'Password'|@translate}</label>
29        </span>
30        <input tabindex="1" class="login" type="password" name="uc_password" id="uc_password" size="25" maxlength="25">
31      </li>
32    </ul>
33  </fieldset>
34
35  <p>
36    <input tabindex="2" type="submit" value="{'Submit'|@translate}">
37  </p>
38</form>
39
40<script type="text/javascript"><!--
41document.login_form.username.focus();
42//--></script>
43
44{else}
45{if !empty($CONTENT_DESCRIPTION)}
46<div class="additional_info">
47        {$CONTENT_DESCRIPTION}
48</div>
49{/if}
50
51{if !empty($THUMBNAILS)}
52<ul class="thumbnails" id="thumbnails">
53{$THUMBNAILS}
54</ul>
55{/if}
56
57{if !empty($navbar)}{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
58{/if}
59
60{if isset($clear)}<div style="clear: both;"></div>
61</div>{/if}
62</div>{* <!-- content --> *}
Note: See TracBrowser for help on using the repository browser.