diff options
Diffstat (limited to 'BSF/template/yoga/search_rules.tpl')
-rw-r--r-- | BSF/template/yoga/search_rules.tpl | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/BSF/template/yoga/search_rules.tpl b/BSF/template/yoga/search_rules.tpl new file mode 100644 index 000000000..c7b4a8b88 --- /dev/null +++ b/BSF/template/yoga/search_rules.tpl @@ -0,0 +1,56 @@ +{* $Id$ *} +<div id="content" class="content"> +<h2>{'Search rules'|@translate}</h2> + +{if isset($INTRODUCTION) } +<p>{$INTRODUCTION}</p> +{/if} + +<ul> + + {if isset($search_words) } + {foreach from=$search_words item=v} + <li>{$v}</li> + {/foreach} + {/if} + + {if isset($SEARCH_TAGS_MODE) } + <li> + <p>{if 'AND'==$SEARCH_TAGS_MODE}{'All tags must match'|@translate}{else}{'At least one tag must match'|@translate}{/if}</p> + <ul> + {foreach from=$search_tags item=v} + <li>{$v}</li> + {/foreach} + </ul> + </li> + {/if} + + {if isset($DATE_CREATION) } + <li>{$DATE_CREATION}</li> + {/if} + + {if isset($DATE_AVAILABLE) } + <li>{$DATE_AVAILABLE}</li> + {/if} + + {if isset($search_categories) } + <li> + <p>{'Categories'|@translate}</p> + + <ul> + {foreach from=$search_categories item=v} + <li>{$v}</li> + {/foreach} + </ul> + </li> + {/if} + +</ul> + +</div> <!-- content --> + +<p id="pageBottomActions"> + <a href="#" onclick="window.close();" title="{'Close this window'|@translate}"> + <img src="{$themeconf.icon_dir}/exit.png" class="button" alt="close"> + </a> +</p> |