|
Lines 75-82
Link Here
|
| 75 |
|
75 |
|
| 76 |
<label for="searchtype">Search type:</label> |
76 |
<label for="searchtype">Search type:</label> |
| 77 |
<select name="searchtype" id="searchtype"> |
77 |
<select name="searchtype" id="searchtype"> |
| 78 |
<option selected="selected" value='start_with'>Starts with</option> |
78 |
[% IF searchtype != 'start_with' %] |
| 79 |
<option value='contain'>Contains</option> |
79 |
<option value='start_with'>Starts with</option> |
|
|
80 |
<option selected="selected" value='contain'>Contains</option> |
| 81 |
[% ELSE %] |
| 82 |
<option selected="selected" value='start_with'>Starts with</option> |
| 83 |
<option value='contain'>Contains</option> |
| 84 |
[% END %] |
| 80 |
</select> |
85 |
</select> |
| 81 |
|
86 |
|
| 82 |
<input value="Search" class="submit" type="submit" /> |
87 |
<input value="Search" class="submit" type="submit" /> |
| 83 |
- |
|
|