123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <div class="thin">
- <h2>
- <a href="forums.php">Forums</a> ›
- <a href="forums.php?action=viewforum&forumid={{ forum.id }}">{{ forum.name }}</a> › {{ thread_title }}
- </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">
- <div class="center">
- <a href="reports.php?action=report&type=thread&id={{ thread_id }}" class="brackets">Report thread</a>
- <a href="#" onclick="Subscribe({{ thread_id }});return false;" id="subscribelink{{ thread_id }}" class="brackets">
- {%- if is_subbed %}Unsubscribe{% else %}Subscribe{% endif -%}
- </a>
- <a href="#" onclick="$('#searchthread').gtoggle(); this.innerHTML = (this.innerHTML == 'Search this thread' ? 'Hide search' : 'Search this thread'); return false;" class="brackets">Search this thread</a>
- </div>
- <div id="searchthread" class="hidden center">
- <div style="display: inline-block;">
- <h3>Search this thread:</h3>
- <form class="search_form" name="forum_thread" action="forums.php" method="get">
- <input type="hidden" name="action" value="search" />
- <input type="hidden" name="threadid" value="{{ thread_id }}" />
- <table cellpadding="6" cellspacing="1" border="0" class="layout border">
- <tr>
- <td><strong>Search for:</strong></td>
- <td><input type="search" id="searchbox" name="search" size="70" /></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>
- {{ paginator.linkbox|raw }}
- {% for t in transition %}
- {% if loop.first %}
- <table class="layout border">
- <tr>
- <td class="label">Move thread</td>
- <td>
- {% endif %}
- <form action="forums.php" method="post" style="display: inline-block">
- <input type="hidden" name="action" value="mod_thread" />
- <input type="hidden" name="auth" value="{{ auth }}" />
- <input type="hidden" name="threadid" value="{{ thread_id }}" />
- <input type="hidden" name="page" value="{{ paginator.page }}" />
- <input type="hidden" name="transition" value="{{ t.id }}" />
- <input type="submit" value="{{ t.label }}" />
- </form>
- {% if loop.last %}
- </td>
- </tr>
- </table>
- {% endif %}
- {% endfor %}
|