summaryrefslogtreecommitdiffstats
path: root/templates/tags.tpl
blob: 3efcc31813de483e13f63d50a7f2330847f9db10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<table>
 <tr>
  <td style="vertical-align: middle; text-decoration: underline;">
   <img src="resources/loupe.png" alt="loupe" />Tag-Search:
  </td>
 </tr>
 <tr>
  <td class="searchfor">
   <form action="" onsubmit="startTagSearch(document.getElementsByName('searchfor')[0].value); return false;">
    <input type="text" name="searchfor" value="{$searchfor}" size="15" />
    <input type="image" src="resources/doit.png" alt="Tag-Search" />
   </form>
  </td>
 </tr>
 <tr>
  <td style="vertical-align: middle; text-decoration: underline;">
   <img src="resources/available_tags.png" alt="available tags" />Available Tags:
  </td>
 </tr>
 <tr>
  <td class="available_tags">
   <div id="available_tags"></div>
  </td>
 </tr>
 <tr>
  <td>
   <table style="width: 100%;">
    <tr>
     <td style="vertical-align: bottom; text-decoration: underline;">
      <img src="resources/selected_tags.png" alt="selected tags" />Selected Tags:
     </td>
     <td style="vertical-align: bottom; white-space: nowrap;">
      &nbsp;
      <input type="radio" name="condition" value="or" onclick="Tags('condition', this);" {if $current_condition == "or" } checked="checked" { /if } />||
      <input type="radio" name="condition" value="and" onclick="Tags('condition', this);" {if $current_condition == "and" } checked="checked" { /if } />&amp;&amp;
     </td>
    </tr>
   </table>
  </td>
 </tr>
 <tr>
  <td class="selected_tags">
   <div id="selected_tags"></div>
  </td>
 </tr>
 <tr>
  <td>&nbsp;</td>
 </tr>
</table>