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

Last change on this file since 32017 was 32017, checked in by plg, 5 years ago

compliance with recommendation for Piwigo 2.10

File size: 2.3 KB
RevLine 
[7989]1<div class="titrePage">
[9134]2        <div class="browsePath">
[12960]3                <h2>
4                        {if isset($MENUBAR)}
5                                <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
6                        {/if}
7                        <a href="{$U_HOME}">{'Home'|@translate}</a>
8                        {$LEVEL_SEPARATOR}{'User comments'|@translate}
9                </h2>
[9134]10        </div>
[7989]11</div>
12<div id="content">
[12960]13        {if isset($MENUBAR)}{$MENUBAR}{/if}
14        <div id="content_cell">
15                <div class="content_block">
[18640]16                        {include file='infos_errors.tpl'}
[12960]17                        <form class="filter" action="{$F_ACTION}" method="get">
18                                <fieldset>
19                                        <legend>{'Filter'|@translate}</legend>
20                                        <label>{'Keyword'|@translate}&nbsp;<input type="text" name="keyword" value="{$F_KEYWORD}">&nbsp;&nbsp;</label>
21                                        <label>{'Author'|@translate}&nbsp;<input type="text" name="author" value="{$F_AUTHOR}">&nbsp;&nbsp;</label>
22                                        <label>
23                                                {'Album'|@translate}
24                                                <select name="cat">
25                                                        <option value="0">------------</option>
26                                                        {html_options options=$categories selected=$categories_selected}
27                                                </select>&nbsp;
28                                        </label>
29                                        <label>
30                                                {'Since'|@translate}
31                                                <select name="since">
32                                                        {html_options options=$since_options selected=$since_options_selected}
33                                                </select>
34                                        </label>
35                                </fieldset>
36                                <fieldset>
37                                        <legend>{'Display'|@translate}</legend>
38                                        <label>
39                                                {'Sort by'|@translate}
40                                                <select name="sort_by">
41                                                        {html_options options=$sort_by_options selected=$sort_by_options_selected}
42                                                </select>&nbsp;
43                                        </label>
44                                        <label>
45                                                {'Sort order'|@translate}
46                                                <select name="sort_order">
47                                                        {html_options options=$sort_order_options selected=$sort_order_options_selected}
48                                                </select>&nbsp;
49                                        </label>
50                                        <label>
51                                                {'Number of items'|@translate}
52                                                <select name="items_number">
53                                                        {html_options options=$item_number_options selected=$item_number_options_selected}
54                                                </select>
55                                        </label>
56                                </fieldset>
57                                <p><input class="submit" type="submit" value="{'Filter and display'|@translate}"></p>
58                        </form>
59                        {if !empty($navbar) }{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
60                        {if isset($comments)}
61                                <div id="comments">
[32017]62                                {if isset($COMMENT_LIST)}
63                                        {$COMMENT_LIST}
64                                {else}
[12960]65                                        {include file='comment_list.tpl'}
[32017]66                                {/if}
[12960]67                                </div>
68                        {/if}
[9134]69                </div>
[12960]70        </div>
[9134]71</div> <!-- content -->
Note: See TracBrowser for help on using the repository browser.