##// END OF EJS Templates
Fixed post replies caching
neko259 -
r575:3c04b31b default
parent child Browse files
Show More
@@ -1,105 +1,105 b''
1 1 {% load i18n %}
2 2 {% load board %}
3 3 {% load cache %}
4 4
5 5 {% get_current_language as LANGUAGE_CODE %}
6 6
7 {% with thread=post.thread_new %}
7 8 {% cache 600 post post.id thread.last_edit_time truncated moderator LANGUAGE_CODE need_open_link %}
8 9
9 10 {% with is_opening=post.is_opening %}
10 11 {% spaceless %}
11 {% with thread=post.thread_new %}
12 12 {% if thread.archived %}
13 13 <div class="post archive_post" id="{{ post.id }}">
14 14 {% elif thread.can_bump %}
15 15 <div class="post" id="{{ post.id }}">
16 16 {% else %}
17 17 <div class="post dead_post" id="{{ post.id }}">
18 18 {% endif %}
19 19
20 20 {% if post.image %}
21 21 <div class="image">
22 22 <a
23 23 class="thumb"
24 24 href="{{ post.image.url }}"><img
25 25 src="{{ post.image.url_200x150 }}"
26 26 alt="{{ post.id }}"
27 27 width="{{ post.image_pre_width }}"
28 28 height="{{ post.image_pre_height }}"
29 29 data-width="{{ post.image_width }}"
30 30 data-height="{{ post.image_height }}"/>
31 31 </a>
32 32 </div>
33 33 {% endif %}
34 34 <div class="message">
35 35 <div class="post-info">
36 36 <span class="title">{{ post.title }}</span>
37 37 {% cache 600 post_id post.id %}
38 38 <a class="post_id" href="{% post_url post.id %}">
39 39 ({{ post.id }}) </a>
40 40 {% endcache %}
41 41 [<span class="pub_time">{{ post.pub_time }}</span>]
42 42 {% if thread.archived %}
43 43 β€” [{{ thread.bump_time }}]
44 44 {% endif %}
45 45 {% if not truncated and not thread.archived %}
46 46 [<a href="#" onclick="javascript:addQuickReply('{{ post.id }}')
47 47 ; return false;">&gt;&gt;</a>]
48 48 {% endif %}
49 49 {% if is_opening and need_open_link %}
50 50 {% if post.thread_new.archived %}
51 51 [<a class="link" href="{% url 'thread' post.id %}">{% trans "Open" %}</a>]
52 52 {% else %}
53 53 [<a class="link" href="{% url 'thread' post.id %}#form">{% trans "Reply" %}</a>]
54 54 {% endif %}
55 55 {% endif %}
56 56
57 57 {% if moderator %}
58 58 <span class="moderator_info">
59 59 [<a href="{% url 'post_admin' post_id=post.id %}"
60 60 >{% trans 'Edit' %}</a>]
61 61 [<a href="{% url 'delete' post_id=post.id %}"
62 62 >{% trans 'Delete' %}</a>]
63 63 ({{ post.poster_ip }})
64 64 [<a href="{% url 'ban' post_id=post.id %}?next={{ request.path }}"
65 65 >{% trans 'Ban IP' %}</a>]
66 66 </span>
67 67 {% endif %}
68 68 </div>
69 69 {% autoescape off %}
70 70 {% if truncated %}
71 71 {{ post.text.rendered|truncatewords_html:50 }}
72 72 {% else %}
73 73 {{ post.text.rendered }}
74 74 {% endif %}
75 75 {% endautoescape %}
76 76 {% cache 600 post_replies post.id post.last_edit_time moderator LANGUAGE_CODE %}
77 77 {% if post.is_referenced %}
78 78 <div class="refmap">
79 79 {% trans "Replies" %}:
80 80 {% for ref_post in post.get_sorted_referenced_posts %}
81 81 <a href="{% post_url ref_post.id %}">&gt;&gt;{{ ref_post.id }}</a
82 82 >{% if not forloop.last %},{% endif %}
83 83 {% endfor %}
84 84 </div>
85 85 {% endif %}
86 86 {% endcache %}
87 87 </div>
88 88 {% if is_opening and thread.tags.exists %}
89 89 <div class="metadata">
90 90 {% if is_opening and need_open_link %}
91 91 {{ thread.get_images_count }} {% trans 'images' %}.
92 92 {% endif %}
93 93 <span class="tags">
94 94 {% for tag in thread.get_tags %}
95 95 <a class="tag" href="{% url 'tag' tag.name %}">
96 96 #{{ tag.name }}</a>{% if not forloop.last %},{% endif %}
97 97 {% endfor %}
98 98 </span>
99 99 </div>
100 100 {% endif %}
101 101 </div>
102 {% endwith %}
103 102 {% endspaceless %}
104 103 {% endwith %}
105 104 {% endcache %}
105 {% endwith %}
General Comments 0
You need to be logged in to leave comments. Login now