source: trunk/themes/default/template/search_rules.tpl @ 6993

Last change on this file since 6993 was 6993, checked in by rvelices, 14 years ago

feature 1616: rename "category" into "album" (4th commit; almost there)

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