Files
Piwigo/themes/default/template/search_rules.tpl
T
rvelices e176f9be0e merge r7823 from trunk to branch 2.1
homogenuous popuphelp and search_rules templates with the rest of pages
simplification of CSS rules

git-svn-id: http://piwigo.org/svn/branches/2.1@7824 68402e56-0260-453c-a942-63ccdbb3a9ee
2010-11-19 20:28:21 +00:00

64 lines
1.2 KiB
Smarty

<div id="content" class="content">
<div class="titrePage">
<ul class="categoryActions">
<li>
<a href="#" onclick="window.close();" title="{'Close this window'|@translate}">
<img src="{$ROOT_URL}{$themeconf.icon_dir}/exit.png" class="button" alt="exit">
</a>
</li>
</ul>
<h2>{'Search rules'|@translate}</h2>
</div>
{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}{'At least one tag 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>
<p>
<a href="#" onclick="window.close();">{'Close this window'|@translate}</a>
</p>
</div> <!-- content -->