diff options
Diffstat (limited to 'BSF/template/yoga/comments.tpl')
-rw-r--r-- | BSF/template/yoga/comments.tpl | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/BSF/template/yoga/comments.tpl b/BSF/template/yoga/comments.tpl new file mode 100644 index 000000000..2e2beaf34 --- /dev/null +++ b/BSF/template/yoga/comments.tpl @@ -0,0 +1,99 @@ +{* $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 --> |