Child: [462c18] (diff)

Download this file

thread.html    16 lines (12 with data), 608 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
{% extends 'jinja_master/master.html' %}
{% block title %}
{{c.project.name}} / {{c.app.config.options.mount_label}} /
{{thread.subject and '%s:%s' % (thread.discussion.name, (thread.subject or '(no subject)')) or thread.discussion.name}}
{% endblock %}
{% block header %}{{'subject' in thread and thread.subject or '(no subject)'}}{% endblock %}
{% block edit_box %}
<div class="editbox">{{c.thread_header.display(value=thread, page=page, limit=limit, count=count)}}</div>
{% endblock %}
{% block content %}
{{c.thread.display(value=thread, page=page, limit=limit, count=count)}}
{% endblock %}