1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <h2><a href="forums.php">Forums</a> › <a href="forums.php#{{ forum.categoryId }}">{{ forum.categoryName }}</a> › {{ forum.name }}</h2>
- <div class="linkbox">
- {% for d in dept_list %}
- <a class="brackets" href="forums.php?action=viewforum&forumid={{ d.forum_id }}">
- {%- if d.active %}<b>{% endif %}{{ d.name }}{% if d.active %}</b>{% endif -%}
- {%- if d.unread %} <span title="unread">({{ d.unread|number_format }})</span>{% endif -%}
- </a>
- {% endfor %}
- </div>
- <div class="linkbox">
- {% if create %}
- <a href="forums.php?action=new&forumid={{ forum.id }}" class="brackets">New thread</a>
- {% endif %}
- <a href="#" onclick="$('#searchforum').gtoggle(); this.innerHTML = (this.innerHTML == 'Search this forum' ? 'Hide search' : 'Search this forum'); return false;" class="brackets">Search this forum</a>
- <div id="searchforum" class="hidden center">
- <div style="display: inline-block;">
- <h3>Search this forum:</h3>
- <form class="search_form" name="forum" action="forums.php" method="get">
- <table cellpadding="6" cellspacing="1" border="0" class="layout border">
- <tr>
- <td>
- <input type="hidden" name="action" value="search" />
- <input type="hidden" name="forums[]" value="{{ forum.id }}" />
- <strong>Search for:</strong>
- </td>
- <td>
- <input type="search" id="searchbox" name="search" size="70" />
- </td>
- </tr>
- <tr>
- <td><strong>Search in:</strong></td>
- <td>
- <input type="radio" name="type" id="type_title" value="title" checked="checked" />
- <label for="type_title">Titles</label>
- <input type="radio" name="type" id="type_body" value="body" />
- <label for="type_body">Post bodies</label>
- </td>
- </tr>
- <tr>
- <td><strong>Posted by:</strong></td>
- <td><input type="search" id="username" name="user" placeholder="Username" size="70" /></td>
- </tr>
- <tr>
- <td colspan="2" style="text-align: center;">
- <input type="submit" name="submit" value="Search" />
- </td>
- </tr>
- </table>
- </form>
- <br />
- </div>
- </div>
- </div>
|