| 1 | <!-- INCLUDE overall_header.html -->
|
|---|
| 2 |
|
|---|
| 3 | <h2 class="solo">{L_SEARCH}</h2>
|
|---|
| 4 |
|
|---|
| 5 | <form method="get" action="{S_SEARCH_ACTION}">
|
|---|
| 6 |
|
|---|
| 7 | <div class="panel">
|
|---|
| 8 | <div class="inner"><span class="corners-top"><span></span></span>
|
|---|
| 9 | <h3>{L_SEARCH_QUERY}</h3>
|
|---|
| 10 |
|
|---|
| 11 | <fieldset>
|
|---|
| 12 | <dl>
|
|---|
| 13 | <dt><label for="keywords">{L_SEARCH_KEYWORDS}:</label><br /><span>{L_SEARCH_KEYWORDS_EXPLAIN}</span></dt>
|
|---|
| 14 | <dd><input type="text" class="inputbox" name="keywords" id="keywords" size="40" title="{L_SEARCH_KEYWORDS}" /></dd>
|
|---|
| 15 | <dd><label for="terms1"><input type="radio" name="terms" id="terms1" value="all" checked="checked" /> {L_SEARCH_ALL_TERMS}</label></dd>
|
|---|
| 16 | <dd><label for="terms2"><input type="radio" name="terms" id="terms2" value="any" /> {L_SEARCH_ANY_TERMS}</label></dd>
|
|---|
| 17 | </dl>
|
|---|
| 18 | <dl>
|
|---|
| 19 | <dt><label for="author">{L_SEARCH_AUTHOR}:</label><br /><span>{L_SEARCH_AUTHOR_EXPLAIN}</span></dt>
|
|---|
| 20 | <dd><input type="text" class="inputbox" name="author" id="author" size="40" title="{L_SEARCH_AUTHOR}" /></dd>
|
|---|
| 21 | </dl>
|
|---|
| 22 | </fieldset>
|
|---|
| 23 |
|
|---|
| 24 | <span class="corners-bottom"><span></span></span></div>
|
|---|
| 25 | </div>
|
|---|
| 26 |
|
|---|
| 27 | <div class="panel bg2">
|
|---|
| 28 | <div class="inner"><span class="corners-top"><span></span></span>
|
|---|
| 29 |
|
|---|
| 30 | <h3>{L_SEARCH_OPTIONS}</h3>
|
|---|
| 31 |
|
|---|
| 32 | <fieldset>
|
|---|
| 33 | <dl>
|
|---|
| 34 | <dt><label for="search_forum">{L_SEARCH_FORUMS}:</label><br /><span>{L_SEARCH_FORUMS_EXPLAIN}</span></dt>
|
|---|
| 35 | <dd><select name="fid[]" id="search_forum" multiple="multiple" size="8" title="{L_SEARCH_FORUMS}">{S_FORUM_OPTIONS}</select></dd>
|
|---|
| 36 | </dl>
|
|---|
| 37 | <dl>
|
|---|
| 38 | <dt><label for="search_child1">{L_SEARCH_SUBFORUMS}:</label></dt>
|
|---|
| 39 | <dd>
|
|---|
| 40 | <label for="search_child1"><input type="radio" name="sc" id="search_child1" value="1" checked="checked" /> {L_YES}</label>
|
|---|
| 41 | <label for="search_child2"><input type="radio" name="sc" id="search_child2" value="0" /> {L_NO}</label>
|
|---|
| 42 | </dd>
|
|---|
| 43 | </dl>
|
|---|
| 44 | <dl>
|
|---|
| 45 | <dt><label for="sf1">{L_SEARCH_WITHIN}:</label></dt>
|
|---|
| 46 | <dd><label for="sf1"><input type="radio" name="sf" id="sf1" value="all" checked="checked" /> {L_SEARCH_TITLE_MSG}</label></dd>
|
|---|
| 47 | <dd><label for="sf2"><input type="radio" name="sf" id="sf2" value="msgonly" /> {L_SEARCH_MSG_ONLY}</label></dd>
|
|---|
| 48 | <dd><label for="sf3"><input type="radio" name="sf" id="sf3" value="titleonly" /> {L_SEARCH_TITLE_ONLY}</label></dd>
|
|---|
| 49 | <dd><label for="sf4"><input type="radio" name="sf" id="sf4" value="firstpost" /> {L_SEARCH_FIRST_POST}</label></dd>
|
|---|
| 50 | </dl>
|
|---|
| 51 |
|
|---|
| 52 | <hr class="dashed" />
|
|---|
| 53 |
|
|---|
| 54 | <dl>
|
|---|
| 55 | <dt><label for="show_results1">{L_DISPLAY_RESULTS}:</label></dt>
|
|---|
| 56 | <dd>
|
|---|
| 57 | <label for="show_results1"><input type="radio" name="sr" id="show_results1" value="posts" checked="checked" /> {L_POSTS}</label>
|
|---|
| 58 | <label for="show_results2"><input type="radio" name="sr" id="show_results2" value="topics" /> {L_TOPICS}</label>
|
|---|
| 59 | </dd>
|
|---|
| 60 | </dl>
|
|---|
| 61 | <dl>
|
|---|
| 62 | <dt><label for="sd">{L_RESULT_SORT}:</label></dt>
|
|---|
| 63 | <dd>{S_SELECT_SORT_KEY}
|
|---|
| 64 | <label for="sa"><input type="radio" name="sd" id="sa" value="a" /> {L_SORT_ASCENDING}</label>
|
|---|
| 65 | <label for="sd"><input type="radio" name="sd" id="sd" value="d" checked="checked" /> {L_SORT_DESCENDING}</label>
|
|---|
| 66 | </dd>
|
|---|
| 67 | </dl>
|
|---|
| 68 | <dl>
|
|---|
| 69 | <dt><label>{L_RESULT_DAYS}:</label></dt>
|
|---|
| 70 | <dd>{S_SELECT_SORT_DAYS}</dd>
|
|---|
| 71 | </dl>
|
|---|
| 72 | <dl>
|
|---|
| 73 | <dt><label>{L_RETURN_FIRST}:</label></dt>
|
|---|
| 74 | <dd><select name="ch" title="{L_RETURN_FIRST}">{S_CHARACTER_OPTIONS}</select> {L_POST_CHARACTERS}</dd>
|
|---|
| 75 | </dl>
|
|---|
| 76 | </fieldset>
|
|---|
| 77 |
|
|---|
| 78 | <span class="corners-bottom"><span></span></span></div>
|
|---|
| 79 | </div>
|
|---|
| 80 |
|
|---|
| 81 | <div class="panel bg3">
|
|---|
| 82 | <div class="inner"><span class="corners-top"><span></span></span>
|
|---|
| 83 |
|
|---|
| 84 | <fieldset class="submit-buttons">
|
|---|
| 85 | {S_HIDDEN_FIELDS}<input type="reset" value="{L_RESET}" name="reset" class="button2" />
|
|---|
| 86 | <input type="submit" name="submit" value="{L_SEARCH}" class="button1" />
|
|---|
| 87 | </fieldset>
|
|---|
| 88 |
|
|---|
| 89 | <span class="corners-bottom"><span></span></span></div>
|
|---|
| 90 | </div>
|
|---|
| 91 |
|
|---|
| 92 | </form>
|
|---|
| 93 |
|
|---|
| 94 | <!-- IF .recentsearch -->
|
|---|
| 95 | <div class="forumbg">
|
|---|
| 96 | <div class="inner"><span class="corners-top"><span></span></span>
|
|---|
| 97 |
|
|---|
| 98 | <table class="table1" cellspacing="1">
|
|---|
| 99 | <thead>
|
|---|
| 100 | <tr>
|
|---|
| 101 | <th colspan="2" class="name">{L_RECENT_SEARCHES}</th>
|
|---|
| 102 | </tr>
|
|---|
| 103 | </thead>
|
|---|
| 104 | <tbody>
|
|---|
| 105 | <!-- BEGIN recentsearch -->
|
|---|
| 106 | <tr class="<!-- IF recentsearch.S_ROW_COUNT is even -->bg1<!-- ELSE -->bg2<!-- ENDIF -->">
|
|---|
| 107 | <td><a href="{recentsearch.U_KEYWORDS}">{recentsearch.KEYWORDS}</a></td>
|
|---|
| 108 | <td class="active"><span> {recentsearch.TIME}</span></td>
|
|---|
| 109 | </tr>
|
|---|
| 110 | <!-- BEGINELSE -->
|
|---|
| 111 | <tr class="bg1">
|
|---|
| 112 | <td colspan="2">{L_NO_RECENT_SEARCHES}</td>
|
|---|
| 113 | </tr>
|
|---|
| 114 | <!-- END recentsearch -->
|
|---|
| 115 | </tbody>
|
|---|
| 116 | </table>
|
|---|
| 117 |
|
|---|
| 118 | <span class="corners-bottom"><span></span></span></div>
|
|---|
| 119 | </div>
|
|---|
| 120 | <!-- ENDIF -->
|
|---|
| 121 |
|
|---|
| 122 | <!-- INCLUDE overall_footer.html -->
|
|---|