##// END OF EJS Templates
Delete replies properly when deleting a thread. Delete thread directly, not by...
Delete replies properly when deleting a thread. Delete thread directly, not by deleting its OP

File last commit:

r922:d17fdea9 default
r950:e663371b default
Show More
base.html
60 lines | 2.1 KiB | text/html | HtmlLexer
{% load staticfiles %}
{% load i18n %}
{% load l10n %}
{% load static from staticfiles %}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="{% static 'css/base.css' %}" media="all"/>
<link rel="stylesheet" type="text/css" href="{% static 'css/3party/highlight.css' %}" media="all"/>
<link rel="stylesheet" type="text/css" href="{% static theme_css %}" media="all"/>
<link rel="alternate" type="application/rss+xml" href="rss/" title="{% trans 'Feed' %}"/>
<link rel="icon" type="image/png"
href="{% static 'favicon.png' %}">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta charset="utf-8"/>
{% block head %}{% endblock %}
</head>
<body>
<script src="{% static 'js/jquery-2.0.1.min.js' %}"></script>
<script src="{% static 'js/jquery-ui-1.10.3.custom.min.js' %}"></script>
<script src="{% static 'js/jquery.mousewheel.js' %}"></script>
<script src="{% url 'js_info_dict' %}"></script>
<div class="navigation_panel header">
<a class="link" href="{% url 'index' %}">{% trans "All threads" %}</a>
{% for tag in tags %}
{% autoescape off %}
{{ tag.get_view }}{% if not forloop.last %},{% endif %}
{% endautoescape %}
{% endfor %}
<a href="{% url 'tags' %}" title="{% trans 'Tag management' %}"
>[...]</a>,
<a href="{% url 'search' %}" title="{% trans 'Search' %}">[S]</a>
<a class="link" href="{% url 'settings' %}">{% trans 'Settings' %}</a>
</div>
{% block content %}{% endblock %}
<script src="{% static 'js/3party/highlight.min.js' %}"></script>
<script src="{% static 'js/popup.js' %}"></script>
<script src="{% static 'js/image.js' %}"></script>
<script src="{% static 'js/refpopup.js' %}"></script>
<script src="{% static 'js/main.js' %}"></script>
<div class="navigation_panel footer">
{% block metapanel %}{% endblock %}
[<a href="{% url 'admin:index' %}">{% trans 'Admin' %}</a>]
{% with ppd=posts_per_day|floatformat:2 %}
{% blocktrans %}Speed: {{ ppd }} posts per day{% endblocktrans %}
{% endwith %}
<a class="link" href="#top">{% trans 'Up' %}</a>
</div>
</body>
</html>