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

Last change on this file since 16016 was 16016, checked in by grum, 12 years ago

feature:2664- compatibility with Piwigo 2.4

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