source: trunk/template/yoga/search_rules.tpl @ 2223

Last change on this file since 2223 was 2223, checked in by rvelices, 16 years ago
  • migrate many templates to smarty
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1{* $Id: search_rules.tpl 2223 2008-02-28 02:41:48Z rvelices $ *}
2<div id="content">
3<h2>{'Search rules'|@translate}</h2>
4
5{if isset($INTRODUCTION) }
6<p>{$INTRODUCTION}</p>
7{/if}
8
9<ul>
10
11  {if isset($search_words) }
12  {foreach from=$search_words item=v}
13  <li>{$v}</li>
14  {/foreach}
15  {/if}
16
17  {if isset($SEARCH_TAGS_MODE) }
18  <li>
19    <p>{if 'AND'==$SEARCH_TAGS_MODE}{'All tags must match'|@translate}{else}{'At least one tag must match'|@translate}{/if}</p>
20    <ul>
21      {foreach from=$search_tags item=v}
22      <li>{$v}</li>
23      {/foreach}
24    </ul>
25  </li>
26  {/if}
27 
28  {if isset($DATE_CREATION) }
29  <li>{$DATE_CREATION}</li>
30  {/if}
31
32  {if isset($DATE_AVAILABLE) }
33  <li>{$DATE_AVAILABLE}</li>
34  {/if}
35
36  {if isset($search_categories) }
37  <li>
38    <p>{'Categories'|@translate}</p>
39
40    <ul>
41      {foreach from=$search_categories item=v}
42      <li>{$v}</li>
43      {/foreach}
44    </ul>
45  </li>
46  {/if}
47 
48</ul>
49
50</div> <!-- content -->
51
52<p id="pageBottomActions">
53  <a href="#" onclick="window.close();" title="{'Close this window'|@translate}">
54    <img src="{$themeconf.icon_dir}/exit.png" class="button" alt="close">
55  </a>
56</p>
Note: See TracBrowser for help on using the repository browser.