summaryrefslogtreecommitdiffstats
path: root/themes/default/templates/tags.tpl
blob: 817cfbcf2a9590bb8a18be572ed7142c70573121 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<span class="tags">
 <img src="{$web_path}/resources/available_tags.png" alt="available tags" />Available Tags:
</span>
<div id="available_tags">{ $preset_available_tags }</div>
<span class="tags">
 <img src="{$web_path}/resources/selected_tags.png" alt="selected tags" />Selected Tags:
</span>
 &nbsp;
 <input type="radio" name="condition" value="or" onclick="Tags('condition', this);" {if $current_condition == "or" } checked="checked" { /if } title="OR condition" />||
 <input type="radio" name="condition" value="and" onclick="Tags('condition', this);" {if $current_condition == "and" } checked="checked" { /if } title="AND condition" />&amp;&amp;
{ if $preset_selected_tags }
 <div id="selected_tags">{ $preset_selected_tags }</div>
{ else }
 <div id="selected_tags">no tags selected</div>
{ /if }