2012-04-12 19:29:08 -04:00
|
|
|
<fieldset>
|
2012-04-20 07:54:30 -04:00
|
|
|
<legend>{% trans 'Boards' %}</legend>
|
2012-04-12 19:29:08 -04:00
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for board in boards %}
|
|
|
|
<li>
|
|
|
|
<a href="?/{{ config.board_path|sprintf(board.uri) }}{{ config.file_index }}">{{ config.board_abbreviation|sprintf(board.uri) }}</a>
|
|
|
|
-
|
2012-05-05 11:33:10 -04:00
|
|
|
{{ board.title|e }}
|
2012-04-12 19:29:08 -04:00
|
|
|
{% if board.subtitle %}
|
2013-08-08 14:58:44 -04:00
|
|
|
<small>—
|
|
|
|
{% if config.allow_subtitle_html %}
|
|
|
|
{{ board.subtitle }}
|
|
|
|
{% else %}
|
|
|
|
{{ board.subtitle|e }}
|
|
|
|
{% endif %}
|
|
|
|
</small>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
|
|
|
{% if mod|hasPermission(config.mod.manageboards) %}
|
2012-05-05 11:33:10 -04:00
|
|
|
<a href="?/edit/{{ board.uri }}"><small>[{% trans 'edit' %}]</small></a>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% if mod|hasPermission(config.mod.newboard) %}
|
2012-05-05 11:33:10 -04:00
|
|
|
<li style="margin-top:15px"><a href="?/new-board"><strong>{% trans 'Create new board' %}</strong></a></li>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</fieldset>
|
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
<fieldset>
|
|
|
|
<legend>{% trans 'Messages' %}</legend>
|
|
|
|
<ul>
|
|
|
|
{% if mod|hasPermission(config.mod.noticeboard) %}
|
2012-04-20 22:42:41 -04:00
|
|
|
{% if noticeboard|count > 0 %}
|
2012-04-20 07:54:30 -04:00
|
|
|
<li>
|
2012-05-05 11:33:10 -04:00
|
|
|
{% trans 'Noticeboard' %}:
|
2012-04-20 07:54:30 -04:00
|
|
|
<ul>
|
|
|
|
{% for post in noticeboard %}
|
|
|
|
<li>
|
|
|
|
<a href="?/noticeboard#{{ post.id }}">
|
|
|
|
{% if post.subject %}
|
|
|
|
{{ post.subject|e }}
|
|
|
|
{% else %}
|
|
|
|
<em>{% trans 'no subject' %}</em>
|
|
|
|
{% endif %}
|
|
|
|
</a>
|
|
|
|
<small class="unimportant">
|
|
|
|
— by
|
|
|
|
{% if post.username %}
|
2012-05-05 11:33:10 -04:00
|
|
|
{{ post.username|e }}
|
2012-04-20 07:54:30 -04:00
|
|
|
{% else %}
|
|
|
|
<em>deleted?</em>
|
|
|
|
{% endif %}
|
|
|
|
at
|
2012-05-19 07:12:40 -04:00
|
|
|
{{ post.time|date(config.post_date) }}
|
2012-04-20 07:54:30 -04:00
|
|
|
</small>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
{% endif %}
|
2012-08-27 12:24:29 -04:00
|
|
|
<li><a href="?/noticeboard">{% trans 'View all noticeboard entries' %}</a></li>
|
2012-05-05 11:33:10 -04:00
|
|
|
{% endif %}
|
|
|
|
<li><a href="?/news">{% trans 'News' %}</a></li>
|
|
|
|
<li>
|
|
|
|
<a href="?/inbox">
|
2012-05-28 03:08:29 -04:00
|
|
|
{% trans 'PM inbox' %}
|
|
|
|
{% if unread_pms > 0 %}<strong>{%endif %}({{ unread_pms }} unread){% if unread_pms > 0 %}</strong>{%endif %}
|
2012-05-05 11:33:10 -04:00
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</fieldset>
|
2012-04-12 19:29:08 -04:00
|
|
|
|
|
|
|
<fieldset>
|
2012-04-20 07:54:30 -04:00
|
|
|
<legend>{% trans 'Administration' %}</legend>
|
2012-04-12 19:29:08 -04:00
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% if mod|hasPermission(config.mod.reports) %}
|
2012-05-25 07:40:01 -04:00
|
|
|
<li>
|
|
|
|
{% if reports > 0 %}<strong>{% endif %}
|
|
|
|
<a href="?/reports">{% trans 'Report queue' %} ({{ reports }})</a>
|
|
|
|
{% if reports > 0 %}</strong>{% endif %}
|
|
|
|
</li>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
|
|
|
{% if mod|hasPermission(config.mod.view_banlist) %}
|
2012-04-20 07:54:30 -04:00
|
|
|
<li><a href="?/bans">{% trans 'Ban list' %}</a></li>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
2013-09-20 22:51:23 -04:00
|
|
|
{% if config.ban_appeals and mod|hasPermission(config.mod.view_ban_appeals) %}
|
|
|
|
<li><a href="?/ban-appeals">{% trans 'Ban appeals' %}</a></li>
|
|
|
|
{% endif %}
|
2012-04-12 19:29:08 -04:00
|
|
|
{% if mod|hasPermission(config.mod.manageusers) %}
|
2012-04-20 07:54:30 -04:00
|
|
|
<li><a href="?/users">{% trans 'Manage users' %}</a></li>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% elseif mod|hasPermission(config.mod.change_password) %}
|
2012-04-20 07:54:30 -04:00
|
|
|
<li><a href="?/users/{{ mod.id }}">{% trans 'Change password' %}</a></li>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
2012-08-12 10:18:13 -04:00
|
|
|
{% if mod|hasPermission(config.mod.themes) %}
|
|
|
|
<li><a href="?/themes">{% trans 'Manage themes' %}</a></li>
|
|
|
|
{% endif %}
|
2012-04-12 19:29:08 -04:00
|
|
|
{% if mod|hasPermission(config.mod.modlog) %}
|
2012-04-20 07:54:30 -04:00
|
|
|
<li><a href="?/log">{% trans 'Moderation log' %}</a></li>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
2014-03-25 07:15:40 -04:00
|
|
|
{% if mod|hasPermission(config.mod.recent) %}
|
2014-03-25 07:05:07 -04:00
|
|
|
<li><a href="?/recent/25">{% trans 'Recent posts' %}</a></li>
|
|
|
|
{% endif %}
|
2012-04-12 19:29:08 -04:00
|
|
|
{% if mod|hasPermission(config.mod.rebuild) %}
|
2012-04-20 07:54:30 -04:00
|
|
|
<li><a href="?/rebuild">{% trans 'Rebuild' %}</a></li>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
2013-08-01 17:18:10 -04:00
|
|
|
{% if mod|hasPermission(config.mod.edit_config) %}
|
2012-04-20 07:54:30 -04:00
|
|
|
<li><a href="?/config">{% trans 'Configuration' %}</a></li>
|
2012-04-12 19:29:08 -04:00
|
|
|
{% endif %}
|
2012-08-12 10:18:13 -04:00
|
|
|
|
2012-04-12 19:29:08 -04:00
|
|
|
</ul>
|
|
|
|
</fieldset>
|
|
|
|
|
2013-07-20 07:50:33 -04:00
|
|
|
{% if mod|hasPermission(config.mod.search) %}
|
2013-07-22 18:30:45 -04:00
|
|
|
<fieldset>
|
|
|
|
<legend>{% trans 'Search' %}</legend>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
{% include 'mod/search_form.html' %}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</fieldset>
|
2013-07-20 07:50:33 -04:00
|
|
|
{% endif %}
|
2012-04-16 06:11:10 -04:00
|
|
|
|
2013-07-22 18:30:45 -04:00
|
|
|
{% if config.mod.dashboard_links|count %}
|
|
|
|
<fieldset>
|
|
|
|
<legend>{% trans 'Other' %}</legend>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for label,link in config.mod.dashboard_links %}
|
|
|
|
<li><a href="{{ link }}">{{ label }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</fieldset>
|
|
|
|
{% endif %}
|
|
|
|
|
2012-04-16 06:11:10 -04:00
|
|
|
{% if config.debug %}
|
|
|
|
<fieldset>
|
2012-04-20 07:54:30 -04:00
|
|
|
<legend>{% trans 'Debug' %}</legend>
|
2012-04-16 06:11:10 -04:00
|
|
|
<ul>
|
2012-04-20 07:54:30 -04:00
|
|
|
<li><a href="?/debug/antispam">{% trans 'Anti-spam' %}</a></li>
|
2013-01-27 02:44:53 -05:00
|
|
|
<li><a href="?/debug/recent">{% trans 'Recent posts' %}</a></li>
|
|
|
|
{% if mod|hasPermission(config.mod.debug_sql) %}
|
|
|
|
<li><a href="?/debug/sql">{% trans 'SQL' %}</a></li>
|
|
|
|
{% endif %}
|
2012-04-16 06:11:10 -04:00
|
|
|
</ul>
|
|
|
|
</fieldset>
|
|
|
|
{% endif %}
|
|
|
|
|
2012-05-05 11:33:10 -04:00
|
|
|
{% if newer_release %}
|
|
|
|
<fieldset>
|
|
|
|
<legend>Update</legend>
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
A newer version of Tinyboard
|
|
|
|
(<strong>v{{ newer_release.massive }}.{{ newer_release.major }}.{{ newer_release.minor }}</strong>) is available!
|
|
|
|
See <a href="http://tinyboard.org">http://tinyboard.org/</a> for upgrade instructions.
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</fieldset>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<fieldset>
|
|
|
|
<legend>{% trans 'User account' %}</legend>
|
|
|
|
|
|
|
|
<ul>
|
2013-09-23 02:48:56 -04:00
|
|
|
<li><a href="?/logout/{{ logout_token }}">{% trans 'Logout' %}</a></li>
|
2012-05-05 11:33:10 -04:00
|
|
|
</ul>
|
|
|
|
</fieldset>
|
|
|
|
|