source: extensions/ContestResults/template/cr_menubar.tpl @ 9572

Last change on this file since 9572 was 9572, checked in by mistic100, 13 years ago

[extensions] ContestResults 1.3

  • Add error and success messages on admin page
  • Add Spain (es_ES) thanks to jpr928
  • Contest status is automatic and shows remaining days
  • More flexibility for description fields
  • Compatibility with Piwigo 2.2.0
File size: 536 bytes
Line 
1{html_head}
2        <style type="text/css">
3                .CR_finished_menu {ldelim}
4                        font-size:0.8em;
5                        color:#a00;
6                        letter-spacing:0px;
7                }
8        </style>
9{/html_head}
10
11<dt>{$block->get_title()}</dt>
12        <dd>
13        <ul>
14                {foreach from=$block->data item=data}
15                        <li>
16                                <a href="{$data.URL}" title="{$data.DATE}">
17                                        {$data.LABEL}
18                                        {if $data.FINISHED}
19                                                <span class="CR_finished_menu">&times;</span>
20                                        {else}
21                                                <span class="CR_finished_menu">{$data.DAYS}</span>
22                                        {/if}
23                                </a>
24                        </li>
25                {/foreach}
26        </ul>
27</dd>
Note: See TracBrowser for help on using the repository browser.