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

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

ContestResults :

  • Code revision
  • Add Letton (lv_LV) language, thanks to Aivars Baldone
  • Delete display options
  • Fix languages bugs
  • Improve public appearence
File size: 428 bytes
Line 
1{html_head}
2        <style type="text/css">
3                .CR_finished {ldelim}
4                        font-size:0.8em;
5                        color:#a00;
6                }
7        </style>
8{/html_head}
9
10<dt>{$block->get_title()}</dt>
11        <dd>
12        <ul>
13                {foreach from=$block->data item=data}
14                        <li>
15                                <a href="{$data.URL}" title="{$data.DATE}">
16                                        {$data.LABEL}
17                                        {if $data.STATUS == 'finished'}<span class="CR_finished">&times;</span>{/if}
18                                </a>
19                        </li>
20                {/foreach}
21        </ul>
22</dd>
Note: See TracBrowser for help on using the repository browser.