source: extensions/Comments_on_Albums/template/coa_comments_page.tpl @ 9634

Last change on this file since 9634 was 9634, checked in by mistic100, 13 years ago

[plugins] Comments on Albums

  • corrections
  • public list available
File size: 2.7 KB
Line 
1{html_head}
2        <style type="text/css">
3                .pwg-icon-comments-images {ldelim}
4                        background-image: url({$COA_PATH}template/s26/outline_{$ICON_COLOR}.png);
5                        background-position: 0 0;
6                }
7                a:hover .pwg-icon-comments-images {ldelim}
8                        background-image: url({$COA_PATH}template/s26/outline_{$ICON_COLOR_OVER}.png);
9                        background-position: 0 0;
10                }
11        </style>
12{/html_head}
13
14<div id="content" class="content">
15
16<div class="titrePage">
17        <ul class="categoryActions">
18                <li><a href="comments.php" title="Commentaires images" class="pwg-state-default pwg-button">
19                        <span class="pwg-icon pwg-icon-comments-images">&nbsp;</span><span class="pwg-button-text">Commentaires images</span>
20                </a></li>
21                <li><a href="{$U_HOME}" title="{'Home'|@translate}" class="pwg-state-default pwg-button">
22                        <span class="pwg-icon pwg-icon-home">&nbsp;</span><span class="pwg-button-text">{'Home'|@translate}</span>
23                </a></li>
24        </ul>
25        <h2>{'User comments'|@translate}</h2>
26</div>
27
28<form class="filter" action="{$F_ACTION}?display_mode=albums" method="get">
29
30  <fieldset>
31    <legend>{'Filter'|@translate}</legend>
32
33    <label>{'Keyword'|@translate}<input type="text" name="keyword" value="{$F_KEYWORD}"></label>
34
35    <label>{'Author'|@translate}<input type="text" name="author" value="{$F_AUTHOR}"></label>
36
37    <label>
38      {'Album'|@translate}
39      <select name="cat">
40        <option value="0">------------</option>
41        {html_options options=$categories selected=$categories_selected}
42      </select>
43    </label>
44
45    <label>
46      {'Since'|@translate}
47      <select name="since">
48        {html_options options=$since_options selected=$since_options_selected}
49      </select>
50    </label>
51
52  </fieldset>
53
54  <fieldset>
55
56    <legend>{'Display'|@translate}</legend>
57
58    <label>
59      {'Sort by'|@translate}
60      <select name="sort_by">
61        {html_options options=$sort_by_options selected=$sort_by_options_selected}
62      </select>
63    </label>
64
65    <label>
66      {'Sort order'|@translate}
67      <select name="sort_order">
68        {html_options options=$sort_order_options selected=$sort_order_options_selected}
69      </select>
70    </label>
71
72    <label>
73      {'Number of items'|@translate}
74      <select name="items_number">
75        {html_options options=$item_number_options selected=$item_number_options_selected}
76      </select>
77    </label>
78
79  </fieldset>
80
81  <input type="hidden" name="display_mode" value="albums"/>
82  <p><input class="submit" type="submit" value="{'Filter and display'|@translate}"></p>
83
84</form>
85 
86{if !empty($navbar) }{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
87
88{if isset($comments)}
89<div id="comments">
90        {include file='comment_list.tpl'}
91</div>
92{/if}
93
94</div> <!-- content -->
95
Note: See TracBrowser for help on using the repository browser.