##// END OF EJS Templates
Added method to check if the paginator supports new-style page links
Added method to check if the paginator supports new-style page links

File last commit:

r1309:a2eaff61 default
r1379:a7080552 default
Show More
settings.html
40 lines | 990 B | text/html | HtmlLexer
{% extends "boards/base.html" %}
{% load i18n %}
{% load tz %}
{% block head %}
<meta name="robots" content="noindex">
<title>{% trans 'Settings' %} - {{ site_name }}</title>
{% endblock %}
{% block content %}
<div class="post">
<p>
{% if moderator %}
{% trans 'You are moderator.' %}
{% endif %}
</p>
{% if hidden_tags %}
<p>{% trans 'Hidden tags:' %}
{% for tag in hidden_tags %}
{{ tag.get_view|safe }}
{% endfor %}
</p>
{% else %}
<p>{% trans 'No hidden tags.' %}</p>
{% endif %}
</div>
<div class="post-form-w">
<div class="post-form">
<form method="post">{% csrf_token %}
{{ form.as_div }}
<div class="form-submit">
<input type="submit" value="{% trans "Save" %}" />
</div>
</form>
</div>
</div>
{% endblock %}