source: extensions/stripped_responsive/template/comments.tpl @ 32018

Last change on this file since 32018 was 32018, checked in by plg, 4 years ago

equivalent to stripped r32017 (compatibility with both Piwigo 2.9 and 2.10)

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