##// END OF EJS Templates
Removed old websocket related code (since websockets are no longer supported
Removed old websocket related code (since websockets are no longer supported

File last commit:

r1940:1f7b0788 default
r1948:be2714ff default
Show More
settings.html
41 lines | 1.0 KiB | text/html | HtmlLexer
Ilyas
Templates moved to fit django documentation structure....
r84 {% extends "boards/base.html" %}
{% load i18n %}
neko259
Added timezone support (time zone is selected in settings)
r1065 {% load tz %}
Ilyas
Templates moved to fit django documentation structure....
r84
{% block head %}
neko259
Added noindex to the pages without unique content or user-specific ones
r1040 <meta name="robots" content="noindex">
neko259
Rewriting views to class-based
r542 <title>{% trans 'Settings' %} - {{ site_name }}</title>
Ilyas
Templates moved to fit django documentation structure....
r84 {% endblock %}
{% block content %}
neko259
Use posts-table style for non-post tables
r1747 <div id="posts-table">
neko259
Fixed hidden tags list in the settings
r733 <p>
{% if moderator %}
{% trans 'You are moderator.' %}
{% endif %}
</p>
neko259
Added hidden tags functionality
r635 {% if hidden_tags %}
<p>{% trans 'Hidden tags:' %}
neko259
Fixed hidden tags list in the settings
r733 {% for tag in hidden_tags %}
neko259
Reflinks to OPs are bold now. Refactored reflinks to build using the same code. Refactored autoescaping
r1309 {{ tag.get_view|safe }}
neko259
Fixed hidden tags list in the settings
r733 {% endfor %}
neko259
Added hidden tags functionality
r635 </p>
neko259
Fixed hidden tags list in the settings
r733 {% else %}
<p>{% trans 'No hidden tags.' %}</p>
neko259
Added hidden tags functionality
r635 {% endif %}
neko259
Added local stickers feature
r1940 <p><a href="{% url 'stickers' %}">{% trans 'Stickers' %}</a></p>
neko259
Added users with unique (sort of) IDs. Moved theme setting to user instead of session. This refs #61
r110 </div>
Ilyas
Templates moved to fit django documentation structure....
r84 <div class="post-form-w">
<div class="post-form">
<form method="post">{% csrf_token %}
neko259
Small style and forms rendering changes
r426 {{ form.as_div }}
<div class="form-submit">
<input type="submit" value="{% trans "Save" %}" />
</div>
Ilyas
Templates moved to fit django documentation structure....
r84 </form>
</div>
</div>
neko259
Made submit button in settings normal size
r208 {% endblock %}