leftypol/templates/mod/dashboard.html

174 lines
4.7 KiB
HTML
Raw Normal View History

2012-04-12 23:29:08 +00:00
<fieldset>
2012-04-20 11:54:30 +00:00
<legend>{% trans 'Boards' %}</legend>
2012-04-12 23:29:08 +00: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 15:33:10 +00:00
{{ board.title|e }}
2012-04-12 23:29:08 +00:00
{% if board.subtitle %}
<small>&mdash;
{% if config.allow_subtitle_html %}
{{ board.subtitle }}
{% else %}
{{ board.subtitle|e }}
{% endif %}
</small>
2012-04-12 23:29:08 +00:00
{% endif %}
{% if mod|hasPermission(config.mod.manageboards) %}
2012-05-05 15:33:10 +00:00
<a href="?/edit/{{ board.uri }}"><small>[{% trans 'edit' %}]</small></a>
2012-04-12 23:29:08 +00:00
{% endif %}
</li>
{% endfor %}
{% if mod|hasPermission(config.mod.newboard) %}
2012-05-05 15:33:10 +00:00
<li style="margin-top:15px"><a href="?/new-board"><strong>{% trans 'Create new board' %}</strong></a></li>
2012-04-12 23:29:08 +00:00
{% endif %}
</ul>
</fieldset>
2012-05-05 15:33:10 +00:00
<fieldset>
<legend>{% trans 'Messages' %}</legend>
<ul>
{% if mod|hasPermission(config.mod.noticeboard) %}
2012-04-21 02:42:41 +00:00
{% if noticeboard|count > 0 %}
2012-04-20 11:54:30 +00:00
<li>
2012-05-05 15:33:10 +00:00
{% trans 'Noticeboard' %}:
2012-04-20 11:54:30 +00: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">
&mdash; by
{% if post.username %}
2012-05-05 15:33:10 +00:00
{{ post.username|e }}
2012-04-20 11:54:30 +00:00
{% else %}
<em>deleted?</em>
{% endif %}
at
2012-05-19 11:12:40 +00:00
{{ post.time|date(config.post_date) }}
2012-04-20 11:54:30 +00:00
</small>
</li>
{% endfor %}
</ul>
</li>
{% endif %}
<li><a href="?/noticeboard">{% trans 'View all noticeboard entries' %}</a></li>
2012-05-05 15:33:10 +00:00
{% endif %}
<li><a href="?/news">{% trans 'News' %}</a></li>
<li>
<a href="?/inbox">
2012-05-28 07:08:29 +00:00
{% trans 'PM inbox' %}
{% if unread_pms > 0 %}<strong>{%endif %}({{ unread_pms }} unread){% if unread_pms > 0 %}</strong>{%endif %}
2012-05-05 15:33:10 +00:00
</a>
</li>
</ul>
</fieldset>
2012-04-12 23:29:08 +00:00
<fieldset>
2012-04-20 11:54:30 +00:00
<legend>{% trans 'Administration' %}</legend>
2012-04-12 23:29:08 +00:00
<ul>
{% if mod|hasPermission(config.mod.reports) %}
<li>
{% if reports > 0 %}<strong>{% endif %}
<a href="?/reports">{% trans 'Report queue' %} ({{ reports }})</a>
{% if reports > 0 %}</strong>{% endif %}
</li>
2012-04-12 23:29:08 +00:00
{% endif %}
{% if mod|hasPermission(config.mod.view_banlist) %}
2012-04-20 11:54:30 +00:00
<li><a href="?/bans">{% trans 'Ban list' %}</a></li>
2012-04-12 23:29:08 +00:00
{% endif %}
{% 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 23:29:08 +00:00
{% if mod|hasPermission(config.mod.manageusers) %}
2012-04-20 11:54:30 +00:00
<li><a href="?/users">{% trans 'Manage users' %}</a></li>
2012-04-12 23:29:08 +00:00
{% elseif mod|hasPermission(config.mod.change_password) %}
2012-04-20 11:54:30 +00:00
<li><a href="?/users/{{ mod.id }}">{% trans 'Change password' %}</a></li>
2012-04-12 23:29:08 +00:00
{% endif %}
2012-08-12 14:18:13 +00:00
{% if mod|hasPermission(config.mod.themes) %}
<li><a href="?/themes">{% trans 'Manage themes' %}</a></li>
{% endif %}
2012-04-12 23:29:08 +00:00
{% if mod|hasPermission(config.mod.modlog) %}
2012-04-20 11:54:30 +00:00
<li><a href="?/log">{% trans 'Moderation log' %}</a></li>
2012-04-12 23:29:08 +00:00
{% endif %}
2014-03-25 11:15:40 +00:00
{% if mod|hasPermission(config.mod.recent) %}
2014-03-25 11:05:07 +00:00
<li><a href="?/recent/25">{% trans 'Recent posts' %}</a></li>
{% endif %}
2012-04-12 23:29:08 +00:00
{% if mod|hasPermission(config.mod.rebuild) %}
2012-04-20 11:54:30 +00:00
<li><a href="?/rebuild">{% trans 'Rebuild' %}</a></li>
2012-04-12 23:29:08 +00:00
{% endif %}
{% if mod|hasPermission(config.mod.edit_config) %}
2012-04-20 11:54:30 +00:00
<li><a href="?/config">{% trans 'Configuration' %}</a></li>
2012-04-12 23:29:08 +00:00
{% endif %}
2012-08-12 14:18:13 +00:00
2012-04-12 23:29:08 +00:00
</ul>
</fieldset>
{% if mod|hasPermission(config.mod.search) %}
2013-07-22 22:30:45 +00:00
<fieldset>
<legend>{% trans 'Search' %}</legend>
<ul>
<li>
{% include 'mod/search_form.html' %}
</li>
</ul>
</fieldset>
{% endif %}
2012-04-16 10:11:10 +00:00
2013-07-22 22:30:45 +00: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 10:11:10 +00:00
{% if config.debug %}
<fieldset>
2012-04-20 11:54:30 +00:00
<legend>{% trans 'Debug' %}</legend>
2012-04-16 10:11:10 +00:00
<ul>
2012-04-20 11:54:30 +00:00
<li><a href="?/debug/antispam">{% trans 'Anti-spam' %}</a></li>
2013-01-27 07:44:53 +00: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 10:11:10 +00:00
</ul>
</fieldset>
{% endif %}
2012-05-05 15:33:10 +00: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 06:48:56 +00:00
<li><a href="?/logout/{{ logout_token }}">{% trans 'Logout' %}</a></li>
2012-05-05 15:33:10 +00:00
</ul>
</fieldset>