source: extensions/gally/gally-default/template/search_rules.tpl @ 6109

Last change on this file since 6109 was 6109, checked in by grum, 14 years ago

Gally's themes compatibles with piwigo 2.1

  • Property svn:executable set to *
File size: 1.2 KB
Line 
1<!-- **GBL** >SEARCH_RULES> -->
2
3<div id="content2" class="content">
4<ul class="categoryActions">
5  <li>
6    <a id="icon_exit" class="button" href="#" onclick="window.close();" title="{'Close this window'|@translate}">
7      <!--<img src="{$ROOT_URL}{$themeconf.icon_dir}/exit.png" class="button" alt="exit">-->
8    </a>
9  </li>
10</ul>
11
12<h2>{'Search rules'|@translate}</h2>
13
14{if isset($INTRODUCTION) }
15<p>{$INTRODUCTION}</p>
16{/if}
17
18<ul>
19
20  {if isset($search_words) }
21  {foreach from=$search_words item=v}
22  <li>{$v}</li>
23  {/foreach}
24  {/if}
25
26  {if isset($SEARCH_TAGS_MODE) }
27  <li>
28    <p>{if 'AND'==$SEARCH_TAGS_MODE}{'All tags must match'|@translate}{else}{'At least one tag must match'|@translate}{/if}</p>
29    <ul>
30      {foreach from=$search_tags item=v}
31      <li>{$v}</li>
32      {/foreach}
33    </ul>
34  </li>
35  {/if}
36
37  {if isset($DATE_CREATION) }
38  <li>{$DATE_CREATION}</li>
39  {/if}
40
41  {if isset($DATE_AVAILABLE) }
42  <li>{$DATE_AVAILABLE}</li>
43  {/if}
44
45  {if isset($search_categories) }
46  <li>
47    <p>{'Categories'|@translate}</p>
48
49    <ul>
50      {foreach from=$search_categories item=v}
51      <li>{$v}</li>
52      {/foreach}
53    </ul>
54  </li>
55  {/if}
56
57</ul>
58
59</div> <!-- content -->
60
Note: See TracBrowser for help on using the repository browser.