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

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