diff options
author | vdigital <vdigital@piwigo.org> | 2008-05-23 22:38:14 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2008-05-23 22:38:14 +0000 |
commit | c55dbbc995e152af3f2c88662101b0643d2e171a (patch) | |
tree | 3862effd5384b7c39295ed6690c9ccafd1677e54 /BSF/template/yoga/comments.tpl | |
parent | 77fd1f51a3c5f5a52f72ef8a299fe368228e2285 (diff) |
Removed file/folder
git-svn-id: http://piwigo.org/svn/trunk@2358 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | BSF/template/yoga/comments.tpl | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/BSF/template/yoga/comments.tpl b/BSF/template/yoga/comments.tpl deleted file mode 100644 index 2e2beaf34..000000000 --- a/BSF/template/yoga/comments.tpl +++ /dev/null @@ -1,99 +0,0 @@ -{* $Id$ *} -<div id="content" class="content"> - - <div class="titrePage"> - <ul class="categoryActions"> - <li><a href="{$U_HOME}" title="{'return to homepage'|@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> - -<div class="navigationBar">{$NAVBAR}</div> - -{if isset($comments)} -<div id="comments"> - - {foreach from=$comments item=comment} - <div class="comment"> - <a class="illustration" href="{$comment.U_PICTURE}"><img src="{$comment.TN_SRC}" alt="{$comment.ALT}" /></a> - <p class="commentHeader"><span class="author">{$comment.AUTHOR}</span> - <span class="date">{$comment.DATE}</span> - - {if isset($comment.U_DELETE)} - <a href="{$comment.U_DELETE}" title="{'comments_del'|@translate}"> - <img src="{$ROOT_URL}{$themeconf.icon_dir}/delete.png" class="button" style="border:none;vertical-align:middle; margin-left:5px;" alt="[{'delete'|@translate}]"/> - </a> - {/if} - - {if isset($comment.U_VALIDATE)} - <a href="{$comment.U_VALIDATE}" title="validate this comment"> - <img src="{$ROOT_URL}{$themeconf.icon_dir}/validate_s.png" class="button" style="border:none;vertical-align:middle; margin-left:5px;" alt="[validate]"/> - </a> - {/if} - - </p> - <blockquote>{$comment.CONTENT}</blockquote> - <hr class="separation"> - </div> - - {/foreach} -</div> -{/if} - -</div> <!-- content --> |