source: extensions/UserCollections/template/view.tpl @ 16591

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

first commit

File size: 1.1 KB
Line 
1{combine_css path=$USER_COLLEC_PATH|@cat:"template/style.css"}
2
3{$MENUBAR}
4
5<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
6<div class="titrePage{if isset($chronology.TITLE)} calendarTitleBar{/if}">
7  <ul class="categoryActions">
8  {if !empty($COLLECTION_ACTIONS)}{$COLLECTION_ACTIONS}{/if}
9  </ul>
10  <h2>{$TITLE}</h2>
11</div>{* <!-- titrePage --> *}
12
13{if isset($errors) or not empty($infos)}
14{include file='infos_errors.tpl'}
15{/if}
16
17{if $collection}
18<fieldset id="colProperties">
19  <legend>{'Properties'|@translate}</legend>
20 
21  <p class="title">{'Name'|@translate}</p>
22  <p>{$collection.NAME}</p>
23  <p class="title">{'Owner'|@translate}</p>
24  <p>{$OWNER}</p>
25  <p class="title">{'Creation date'|@translate}</p>
26  <p>{$collection.DATE_CREATION}</p>
27</fieldset>
28</form>
29{/if}
30
31
32{if !empty($THUMBNAILS)}
33<ul class="thumbnails" id="thumbnails">
34{$THUMBNAILS}
35</ul>
36{/if}
37
38{if !empty($navbar)}{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
39
40{if $U_LIST}<p style="text-align:center;font-weight:bold;margin:20px;"><a href="{$U_LIST}" rel="nofollow">{'Return to collections list'|@translate}</a></p>{/if}
41
42</div>{* <!-- content --> *}
Note: See TracBrowser for help on using the repository browser.