- new : HTML BODY identifier to let CSS stylesheets manage specific
behaviour.
- deletion : admin/search useless
- improvement : in admin/user_list, special behaviour for true/false fields
(expand, show_comments)
- new : gallery_title and gallery_description are displayed at the top of
each page.
- improvement : simplification in HTML for categories menu.
- improvement : standardization of presentation in all public pages
(identification, registration, search, profile, notification, comments,
etc.)
(not in ChangeLog, below this line)
- add forgotten notification.php (should have been added in a previous
commit)
- [template cclear] deletion of useless class .bouton
- [template cclear] for test purpose, new presentation of register page
(using FORM.filter)
- [template cclear] adaptation of admin/group_list from template default
- [template cclear] deletion of obsolete admin/infos_images
- [template cclear] deletion of obsolete admin/search_username
- [template cclear] new icon register.png
git-svn-id: http://piwigo.org/svn/trunk@850 68402e56-0260-453c-a942-63ccdbb3a9ee
2005-08-25 22:43:47 +00:00
|
|
|
<!-- $Id$ -->
|
2005-08-21 21:23:17 +00:00
|
|
|
<div id="content">
|
2005-08-18 07:04:05 +00:00
|
|
|
|
2005-08-21 21:23:17 +00:00
|
|
|
<div class="titrePage">
|
|
|
|
<ul class="categoryActions">
|
2005-12-03 17:33:38 +00:00
|
|
|
<li><a href="{U_HOME}" title="{lang:return to homepage}"><img src="{themeconf:icon_dir}/home.png" class="button" alt="{lang:home}"/></a></li>
|
2005-08-21 21:23:17 +00:00
|
|
|
</ul>
|
|
|
|
<h2>{lang:User comments}</h2>
|
|
|
|
</div>
|
2005-08-18 07:04:05 +00:00
|
|
|
|
2005-08-21 21:23:17 +00:00
|
|
|
<form class="filter" action="{F_ACTION}" method="get">
|
2005-08-18 07:04:05 +00:00
|
|
|
|
2005-08-21 21:23:17 +00:00
|
|
|
<fieldset>
|
|
|
|
<legend>{lang:Filter}</legend>
|
|
|
|
|
|
|
|
<label>{lang:Keyword}<input type="text" name="keyword" value="{F_KEYWORD}" /></label>
|
|
|
|
|
|
|
|
<label>{lang:Author}<input type="text" name="author" value="{F_AUTHOR}" /></label>
|
|
|
|
|
|
|
|
<label>
|
|
|
|
{lang:Category}
|
|
|
|
<select name="cat">
|
|
|
|
<!-- BEGIN category -->
|
|
|
|
<option class="{category.CLASS}" {category.SELECTED} value="{category.VALUE}">{category.OPTION}</option>
|
|
|
|
<!-- END category -->
|
|
|
|
</select>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<label>
|
|
|
|
{lang:Since}
|
|
|
|
<select name="since">
|
|
|
|
<!-- BEGIN since_option -->
|
|
|
|
<option {since_option.SELECTED} value="{since_option.VALUE}">{since_option.CONTENT}</option>
|
|
|
|
<!-- END since_option -->
|
|
|
|
</select>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
|
|
|
|
<legend>{lang:Display}</legend>
|
|
|
|
|
|
|
|
<label>
|
|
|
|
{lang:Sort by}
|
|
|
|
<select name="sort_by">
|
|
|
|
<!-- BEGIN sort_by_option -->
|
|
|
|
<option value="{sort_by_option.VALUE}" {sort_by_option.SELECTED} >{sort_by_option.CONTENT}</option>
|
|
|
|
<!-- END sort_by_option -->
|
|
|
|
</select>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<label>
|
|
|
|
{lang:Sort order}
|
|
|
|
<select name="sort_order">
|
|
|
|
<!-- BEGIN sort_order_option -->
|
|
|
|
<option value="{sort_order_option.VALUE}" {sort_order_option.SELECTED} >{sort_order_option.CONTENT}</option>
|
|
|
|
<!-- END sort_order_option -->
|
|
|
|
</select>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<label>
|
|
|
|
{lang:Number of items}
|
|
|
|
<select name="items_number">
|
|
|
|
<!-- BEGIN items_number_option -->
|
|
|
|
<option value="{items_number_option.VALUE}" {items_number_option.SELECTED} >{items_number_option.CONTENT}</option>
|
|
|
|
<!-- END items_option -->
|
|
|
|
</select>
|
|
|
|
</label>
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
2005-09-03 16:36:05 +00:00
|
|
|
<p><input type="submit" name="submit" value="{lang:Filter and display}"></p>
|
2005-08-18 07:04:05 +00:00
|
|
|
|
|
|
|
</form>
|
2005-08-21 21:23:17 +00:00
|
|
|
|
|
|
|
<div class="navigationBar">{NAVBAR}</div>
|
|
|
|
|
|
|
|
<div id="comments">
|
|
|
|
|
|
|
|
<!-- BEGIN comment -->
|
|
|
|
<div class="comment">
|
|
|
|
<a class="illustration" href="{comment.U_PICTURE}"><img src="{comment.TN_SRC}" /></a>
|
|
|
|
<p class="commentHeader"><span class="author">{comment.AUTHOR}</span> - <span class="date">{comment.DATE}</span></p>
|
|
|
|
<blockquote>{comment.CONTENT}</blockquote>
|
|
|
|
<hr class="separation">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- END comment -->
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div> <!-- content -->
|