##// END OF EJS Templates
Merged with default branch
Merged with default branch

File last commit:

r1005:1df42bd8 default
r1015:c84f21f3 merge decentral
Show More
posting_general.html
188 lines | 6.9 KiB | text/html | HtmlLexer
{% extends "boards/base.html" %}
{% load i18n %}
{% load cache %}
{% load board %}
{% load static %}
{% block head %}
{% if tag %}
<title>{{ tag.name }} - {{ site_name }}</title>
{% else %}
<title>{{ site_name }}</title>
{% endif %}
{% if current_page.has_previous %}
<link rel="prev" href="
{% if tag %}
{% url "tag" tag_name=tag.name page=current_page.previous_page_number %}
{% else %}
{% url "index" page=current_page.previous_page_number %}
{% endif %}
" />
{% endif %}
{% if current_page.has_next %}
<link rel="next" href="
{% if tag %}
{% url "tag" tag_name=tag.name page=current_page.next_page_number %}
{% else %}
{% url "index" page=current_page.next_page_number %}
{% endif %}
" />
{% endif %}
{% endblock %}
{% block content %}
{% get_current_language as LANGUAGE_CODE %}
{% if tag %}
<div class="tag_info">
<h2>
{% if is_favorite %}
<a href="{% url 'tag' tag.name %}?method=unsubscribe&next={{ request.path }}"
class="fav" rel="nofollow">★</a>
{% else %}
<a href="{% url 'tag' tag.name %}?method=subscribe&next={{ request.path }}"
class="not_fav" rel="nofollow">★</a>
{% endif %}
{% if is_hidden %}
<a href="{% url 'tag' tag.name %}?method=unhide&next={{ request.path }}"
title="{% trans 'Show tag' %}"
class="fav" rel="nofollow">H</a>
{% else %}
<a href="{% url 'tag' tag.name %}?method=hide&next={{ request.path }}"
title="{% trans 'Hide tag' %}"
class="not_fav" rel="nofollow">H</a>
{% endif %}
{% autoescape off %}
{{ tag.get_view }}
{% endautoescape %}
{% if moderator %}
<span class="moderator_info">[<a href="{% url 'admin:boards_tag_change' tag.id %}">{% trans 'Edit tag' %}</a>]</span>
{% endif %}
</h2>
<p>{% blocktrans with thread_count=tag.get_thread_count post_count=tag.get_post_count %}This tag has {{ thread_count }} threads and {{ post_count }} posts.{% endblocktrans %}</p>
</div>
{% endif %}
{% if threads %}
{% if current_page.has_previous %}
<div class="page_link">
<a href="
{% if tag %}
{% url "tag" tag_name=tag.name page=current_page.previous_page_number %}
{% else %}
{% url "index" page=current_page.previous_page_number %}
{% endif %}
">{% trans "Previous page" %}</a>
</div>
{% endif %}
{% for thread in threads %}
{% cache 600 thread_short thread.id thread.last_edit_time moderator LANGUAGE_CODE %}
<div class="thread">
{% post_view thread.get_opening_post moderator is_opening=True thread=thread truncated=True need_open_link=True %}
{% if not thread.archived %}
{% with last_replies=thread.get_last_replies %}
{% if last_replies %}
{% if thread.get_skipped_replies_count %}
<div class="skipped_replies">
<a href="{% url 'thread' thread.get_opening_post.id %}">
{% blocktrans with count=thread.get_skipped_replies_count %}Skipped {{ count }} replies. Open thread to see all replies.{% endblocktrans %}
</a>
</div>
{% endif %}
<div class="last-replies">
{% for post in last_replies %}
{% post_view post is_opening=False moderator=moderator truncated=True %}
{% endfor %}
</div>
{% endif %}
{% endwith %}
{% endif %}
</div>
{% endcache %}
{% endfor %}
{% if current_page.has_next %}
<div class="page_link">
<a href="
{% if tag %}
{% url "tag" tag_name=tag.name page=current_page.next_page_number %}
{% else %}
{% url "index" page=current_page.next_page_number %}
{% endif %}
">{% trans "Next page" %}</a>
</div>
{% endif %}
{% else %}
<div class="post">
{% trans 'No threads exist. Create the first one!' %}</div>
{% endif %}
<div class="post-form-w">
<script src="{% static 'js/panel.js' %}"></script>
<div class="post-form">
<div class="form-title">{% trans "Create new thread" %}</div>
<div class="swappable-form-full">
<form enctype="multipart/form-data" method="post"id="form">{% csrf_token %}
{{ form.as_div }}
<div class="form-submit">
<input type="submit" value="{% trans "Post" %}"/>
</div>
(ctrl-enter)
</form>
</div>
<div>
{% trans 'Tags must be delimited by spaces. Text or image is required.' %}
</div>
<div><a href="{% url "staticpage" name="help" %}">
{% trans 'Text syntax' %}</a></div>
</div>
</div>
<script src="{% static 'js/form.js' %}"></script>
{% endblock %}
{% block metapanel %}
<span class="metapanel">
<b><a href="{% url "authors" %}">{{ site_name }}</a> {{ version }}</b>
{% trans "Pages:" %}
<a href="
{% if tag %}
{% url "tag" tag_name=tag.name page=paginator.page_range|first %}
{% else %}
{% url "index" page=paginator.page_range|first %}
{% endif %}
">&lt;&lt;</a>
[
{% for page in paginator.center_range %}
<a
{% ifequal page current_page.number %}
class="current_page"
{% endifequal %}
href="
{% if tag %}
{% url "tag" tag_name=tag.name page=page %}
{% else %}
{% url "index" page=page %}
{% endif %}
">{{ page }}</a>
{% if not forloop.last %},{% endif %}
{% endfor %}
]
<a href="
{% if tag %}
{% url "tag" tag_name=tag.name page=paginator.page_range|last %}
{% else %}
{% url "index" page=paginator.page_range|last %}
{% endif %}
">&gt;&gt;</a>
[<a href="rss/">RSS</a>]
</span>
{% endblock %}