1 | |
---|
2 | <div id="content" class="content"> |
---|
3 | |
---|
4 | <div class="titrePage"> |
---|
5 | <ul class="categoryActions"> |
---|
6 | <li><a id="icon_home" class="button" href="{$U_HOME}" title="{'return to homepage'|@translate}"><!-- <img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'home'|@translate}"/>--> </a></li> |
---|
7 | </ul> |
---|
8 | <h2>{'User comments'|@translate}</h2> |
---|
9 | </div> |
---|
10 | |
---|
11 | <form class="filter" action="{$F_ACTION}" method="get"> |
---|
12 | |
---|
13 | <fieldset> |
---|
14 | <legend>{'Filter'|@translate}</legend> |
---|
15 | <ul> |
---|
16 | <li><div class="property">{'Keyword'|@translate}</div><input type="text" name="keyword" value="{$F_KEYWORD}" /></li> |
---|
17 | |
---|
18 | <li><div class="property">{'Author'|@translate}</div><input type="text" name="author" value="{$F_AUTHOR}" /></li> |
---|
19 | |
---|
20 | <li><div class="property">{'Category'|@translate}</div> |
---|
21 | <select name="cat"> |
---|
22 | <option value="0">------------</option> |
---|
23 | {html_options options=$categories selected=$categories_selected} |
---|
24 | </select> |
---|
25 | </li> |
---|
26 | |
---|
27 | <li><div class="property">{'Since'|@translate}</div> |
---|
28 | <select name="since"> |
---|
29 | {html_options options=$since_options selected=$since_options_selected} |
---|
30 | </select> |
---|
31 | </li> |
---|
32 | </ul> |
---|
33 | </fieldset> |
---|
34 | |
---|
35 | <fieldset> |
---|
36 | |
---|
37 | <legend>{'Display'|@translate}</legend> |
---|
38 | <ul> |
---|
39 | <li><div class="property">{'Sort by'|@translate}</div> |
---|
40 | <select name="sort_by"> |
---|
41 | {html_options options=$sort_by_options selected=$sort_by_options_selected} |
---|
42 | </select> |
---|
43 | </li> |
---|
44 | |
---|
45 | <li><div class="property">{'Sort order'|@translate}</div> |
---|
46 | <select name="sort_order"> |
---|
47 | {html_options options=$sort_order_options selected=$sort_order_options_selected} |
---|
48 | </select> |
---|
49 | </li> |
---|
50 | |
---|
51 | <li><div class="property">{'Number of items'|@translate}</div> |
---|
52 | <select name="items_number"> |
---|
53 | {html_options options=$item_number_options selected=$item_number_options_selected} |
---|
54 | </select> |
---|
55 | </li> |
---|
56 | </ul> |
---|
57 | </fieldset> |
---|
58 | |
---|
59 | <p><input class="submit" type="submit" value="{'Filter and display'|@translate}"></p> |
---|
60 | |
---|
61 | </form> |
---|
62 | |
---|
63 | <div class="navigationBar">{$NAVBAR}</div> |
---|
64 | |
---|
65 | {if isset($comments)} |
---|
66 | <div id="comments"> |
---|
67 | {include file='comment_list.tpl'} |
---|
68 | </div> |
---|
69 | {/if} |
---|
70 | |
---|
71 | </div> <!-- content --> |
---|
72 | |
---|