mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-06 13:32:52 +02:00
feature 1494: move all *.tpl files from template/yoga to the new
template/default (from which yoga derives) git-svn-id: http://piwigo.org/svn/trunk@5095 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
76
template/default/comments.tpl
Normal file
76
template/default/comments.tpl
Normal file
@@ -0,0 +1,76 @@
|
||||
<div id="content" class="content">
|
||||
|
||||
<div class="titrePage">
|
||||
<ul class="categoryActions">
|
||||
<li><a href="{$U_HOME}" title="{'Home'|@translate}"><img src="{$themeconf.icon_dir}/Home.png" class="button" alt="{'Home'|@translate}"></a></li>
|
||||
</ul>
|
||||
<h2>{'User comments'|@translate}</h2>
|
||||
</div>
|
||||
|
||||
<form class="filter" action="{$F_ACTION}" method="get">
|
||||
|
||||
<fieldset>
|
||||
<legend>{'Filter'|@translate}</legend>
|
||||
|
||||
<label>{'Keyword'|@translate}<input type="text" name="keyword" value="{$F_KEYWORD}"></label>
|
||||
|
||||
<label>{'Author'|@translate}<input type="text" name="author" value="{$F_AUTHOR}"></label>
|
||||
|
||||
<label>
|
||||
{'Category'|@translate}
|
||||
<select name="cat">
|
||||
<option value="0">------------</option>
|
||||
{html_options options=$categories selected=$categories_selected}
|
||||
</select>
|
||||
</label>
|
||||
|
||||
<label>
|
||||
{'Since'|@translate}
|
||||
<select name="since">
|
||||
{html_options options=$since_options selected=$since_options_selected}
|
||||
</select>
|
||||
</label>
|
||||
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
|
||||
<legend>{'Display'|@translate}</legend>
|
||||
|
||||
<label>
|
||||
{'Sort by'|@translate}
|
||||
<select name="sort_by">
|
||||
{html_options options=$sort_by_options selected=$sort_by_options_selected}
|
||||
</select>
|
||||
</label>
|
||||
|
||||
<label>
|
||||
{'Sort order'|@translate}
|
||||
<select name="sort_order">
|
||||
{html_options options=$sort_order_options selected=$sort_order_options_selected}
|
||||
</select>
|
||||
</label>
|
||||
|
||||
<label>
|
||||
{'Number of items'|@translate}
|
||||
<select name="items_number">
|
||||
{html_options options=$item_number_options selected=$item_number_options_selected}
|
||||
</select>
|
||||
</label>
|
||||
|
||||
</fieldset>
|
||||
|
||||
<p><input class="submit" type="submit" value="{'Filter and display'|@translate}"></p>
|
||||
|
||||
</form>
|
||||
|
||||
{if !empty($navbar) }{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
|
||||
|
||||
{if isset($comments)}
|
||||
<div id="comments">
|
||||
{include file='comment_list.tpl'}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
</div> <!-- content -->
|
||||
|
||||
Reference in New Issue
Block a user