Parent: [923fc2] (diff)

Child: [3ad7c0] (diff)

Download this file

index.html    68 lines (60 with data), 2.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{% extends g.theme.master %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / Forums{% endblock %}
{% block header %}{{c.app.config.options.mount_label}}{% endblock %}
{% block actions %}
<a href="feed" class="follow" title="Follow"><b data-icon="{{g.icons['feed'].char}}" class="ico {{g.icons['feed'].css}}"></b></a>
{% endblock %}
{% if h.has_access(c.app, 'configure')() and (not hide_forum) %}
{% block edit_box %}
<div id="add_forum_form"{% if hide_forum %} style="display:none"{% endif %} class="editbox">
{{c.add_forum.display(method='POST', action=c.project.url() + c.app.config.options.mount_point + '/add_forum_short', app=c.app, value=add_forum)}}
</div>
{% endblock %}
{% endif %}
{% block content %}
{% if announcements %}
<h3>Announcements</h3>
{{c.announcements_table.display(value=announcements)}}
{% endif %}
{% set visible=0 %}
{% for forum in forums %}
<div class="discussion_forum grid-9">
<strong class="forum_name">{{forum.name}}:</strong>
<br>{{forum.description}}<br>&nbsp;<br>
{% for thread in threads[forum._id] %}
{% if loop.index0 == 5 %}
<a href="{{forum.url()}}">More</a>
{% else %}
{{thread.num_replies}} posts to <a href="{{thread.url()}}">{{h.text.truncate(h.really_unicode(thread.subject or '(no subject)'),75)}}</a><br>
{% endif %}
{% endfor %}
</div>
{% set visible = visible + 1 %}
{% if visible%2==0 %}
<div class="clear">&nbsp;</div>
{% endif %}
{% endfor %}
{% endblock %}
{% block extra_js %}
{% if h.has_access(c.app, 'configure')() %}
<script type="text/javascript">
$(function() {
$("#add_forum").click(function(){
$("div.editbox").show();
return false;
});
$("#add_forum_cancel").click(function(){
$("div.editbox").hide();
return false;
});
});
</script>
{% endif %}
{% endblock %}
{% block extra_css %}
<style type="text/css">
.forum_name{
font-size: 1.2em;
}
</style>
{% endblock %}