source: extensions/UserCollections/template/menublock_user_collec.tpl @ 16688

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

-rework the main menu
-bug when a collection is create through AJAX
-add "Remove from collection" on colorbox
-minor interfaces changes

File size: 905 bytes
Line 
1<dt>{$block->get_title()}</dt>
2<dd>
3  <p><a href="{$block->data.U_LIST}">{'You have %d collections'|@translate|sprintf:$block->data.NB_COL}</a></p>
4  {if $block->data.collections}
5  <ul>{strip}
6                {foreach from=$block->data.collections item=col}
7                <li>{if $col.active}
8      <a href="{$col.U_EDIT}" style="font-weight:bold;" rel="nofollow">{$col.name}</a> <i class="menuInfoCat">({'active'|@translate})</i> <span class="menuInfoCat">[<span class="nbImagesCollec">{$col.nb_images}</span>]</span>
9    {else}
10      <a href="{$col.U_EDIT}" rel="nofollow">{$col.name}</a> <span class="menuInfoCat">[{$col.nb_images}]</span>
11    {/if}</li>
12                {/foreach}
13    {if $block->data.MORE}<li class="menuInfoCat">{'%d more...'|@translate|sprintf:$block->data.MORE}</li>{/if}
14        {/strip}</ul>
15  {/if}
16  <p><a href="{$block->data.U_CREATE}" rel="nofollow">{'Create a new collection'|@translate}</a></p>
17</dd>
Note: See TracBrowser for help on using the repository browser.