]> ruin.nu Git - ndwebbie.git/blobdiff - templates/forum/search.tmpl
Converted forum to catalyst.
[ndwebbie.git] / templates / forum / search.tmpl
diff --git a/templates/forum/search.tmpl b/templates/forum/search.tmpl
deleted file mode 100644 (file)
index 43890f4..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-<form action="/<TMPL_VAR NAME=PAGE>" method="post">
-
-<fieldset class="forum-post"> <legend>Topic</legend>
-       Find posts with these words in the thread's topic<br/>
-       <input style="width:98%" type="text" name="topic" value=""/><br/>
-       Require all words: <input type="checkbox" name="alltopic" value="1"/><br/>
-</fieldset>
-
-<fieldset class="forum-post"> <legend>Body</legend>
-       Find posts with these words in the body<br/>
-       <input style="width:98%" type="text" name="body" value=""/><br/>
-       Require all words: <input type="checkbox" name="allbody" value="1"/><br/>
-</fieldset>
-
-<fieldset class="forum-post"> <legend>Usernames</legend>
-       Find posts written by one these users<br/>
-       <input style="width:98%" type="text" name="author" value=""/><br/>
-</fieldset>
-
-<fieldset class="forum-post"> <legend>Custom search</legend>
-       Use | (OR) or &amp; (AND) to separate words. Word:A searches for Word in
-       topic and Word:B searches for Word as author. 'Two words' to search for a
-       longer string. Word:D limits the search to just the message body.
-       <p><input style="width:98%" type="text" name="search" value=""/></p>
-</fieldset>
-<input type="submit" name="cmd" value="Search"/>
-</form>
-
-<TMPL_IF SearchResult>
-<table>
-<tr>
-       <th>Thread</th>
-       <th>Author</th>
-       <th>Message</th>
-       <th>Rank</th>
-</tr>
-<TMPL_LOOP SearchResult>
-       <tr align="left" class="<TMPL_IF __odd__>odd<TMPL_ELSE>even</TMPL_IF>">
-               <td><a href="/forum?t=<TMPL_VAR NAME=FTID>">&nbsp;<TMPL_VAR ESCAPE=NONE NAME=Subject>&nbsp;</a></td>
-               <td><TMPL_VAR NAME=Username></td>
-               <td align="center"><TMPL_VAR ESCAPE=NONE NAME=Headline></td>
-               <td><TMPL_VAR NAME=Rank></td>
-       </tr>
-</TMPL_LOOP>
-</table>
-</TMPL_IF>