source: extensions/stripped/template/comments.tpl @ 9134

Last change on this file since 9134 was 9134, checked in by Zaphod, 13 years ago

[extension] stripped - version 1.2.0

File size: 2.0 KB
Line 
1{php}
2        global $conf;
3        $this->assign('LEVEL_SEPARATOR', $conf[ 'level_separator' ]);
4{/php}
5<div class="titrePage">
6        <div class="browsePath">
7                <h2><a href="{$U_HOME}" title="{'Home'|@translate}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'User comments'|@translate}</h2>
8        </div>
9</div>
10<div id="content">
11        <form class="filter" action="{$F_ACTION}" method="get">
12                <fieldset>
13                        <legend>{'Filter'|@translate}</legend>
14                        <label>{'Keyword'|@translate}&nbsp;<input type="text" name="keyword" value="{$F_KEYWORD}">&nbsp;&nbsp;</label>
15                        <label>{'Author'|@translate}&nbsp;<input type="text" name="author" value="{$F_AUTHOR}">&nbsp;&nbsp;</label>
16                        <label>
17                                {'Category'|@translate}
18                                <select name="cat">
19                                        <option value="0">------------</option>
20                                        {html_options options=$categories selected=$categories_selected}
21                                </select>&nbsp;
22                        </label>
23                        <label>
24                                {'Since'|@translate}
25                                <select name="since">
26                                        {html_options options=$since_options selected=$since_options_selected}
27                                </select>
28                        </label>
29                </fieldset>
30                <fieldset>
31                        <legend>{'Display'|@translate}</legend>
32                        <label>
33                                {'Sort by'|@translate}
34                                <select name="sort_by">
35                                        {html_options options=$sort_by_options selected=$sort_by_options_selected}
36                                </select>&nbsp;
37                        </label>
38                        <label>
39                                {'Sort order'|@translate}
40                                <select name="sort_order">
41                                        {html_options options=$sort_order_options selected=$sort_order_options_selected}
42                                </select>&nbsp;
43                        </label>
44                        <label>
45                                {'Number of items'|@translate}
46                                <select name="items_number">
47                                        {html_options options=$item_number_options selected=$item_number_options_selected}
48                                </select>
49                        </label>
50                </fieldset>
51                <p><input class="submit" type="submit" value="{'Filter and display'|@translate}"></p>
52        </form>
53        {if !empty($navbar) }{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
54        {if isset($comments)}
55                <div id="comments">
56                        {include file='comment_list.tpl'}
57                </div>
58        {/if}
59</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.