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