list.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. {% extends "cranefly/layout.html" %}
  2. {% import "_forms.html" as form_theme with context %}
  3. {% import "cranefly/macros.html" as macros with context %}
  4. {% block title %}{{ macros.page_title(title=forum.name,page=pagination['page']) }}{% endblock %}
  5. {% block breadcrumb %}{{ super() }} <span class="divider"><i class="icon-chevron-right"></i></span></li>
  6. {% for parent in parents %}
  7. <li><a href="{{ parent.type|url(forum=parent.pk, slug=parent.slug) }}">{{ parent.name }}</a> <span class="divider"><i class="icon-chevron-right"></i></span></li>
  8. {% endfor %}
  9. <li class="active">{{ forum.name }}
  10. {%- endblock %}
  11. {% block container %}
  12. <div class="page-header header-primary">
  13. <div class="container">
  14. {{ messages_list(messages) }}
  15. <ul class="breadcrumb" {{ macros.itemprop_bread() }}>
  16. {{ self.breadcrumb() }}</li>
  17. </ul>
  18. <h1>{{ forum.name }}</h1>
  19. </div>
  20. </div>
  21. <div class="container container-primary">
  22. {% if forum.description %}
  23. <div class="markdown lead page-description">
  24. {{ forum.description_preparsed|markdown_final|safe }}
  25. </div>
  26. {% endif %}
  27. {% if forum.subforums %}
  28. <div id="subforums" class="forum-subforums-list{% if forum.style %} forum-subforums-{{ forum.style }}{% endif %}">
  29. <table class="table">
  30. <caption>{% trans %}Child forums{% endtrans %}</caption>
  31. <tbody>
  32. {% for subforum in forum.subforums %}
  33. <tr>
  34. <td class="forum-icon"><span class="forum-icon-wrap{% if subforum.type == 'redirect' %} forum-icon-redirect{% elif not subforum.is_read %} forum-icon-new{% endif %}"><i class="icon-{% if subforum.type == 'redirect' %}circle-arrow-right{% else %}comment{% endif %} icon-white"></i></span></td>
  35. <td id="forum-{{ subforum.id }}" class="forum-main">
  36. <h3 class="forum-title{% if not subforum.is_read %} forum-title-new{% endif %}"><a href="{{ subforum.type|url(slug=subforum.slug, forum=subforum.id) }}">{{ subforum.name }}</a></h3>
  37. {% if subforum.show_details %}
  38. <div class="forum-details">
  39. {% if subforum.type != 'redirect' %}
  40. {% if acl.forums.can_browse(subforum) and (acl.threads.can_read_threads(subforum) == 2 or (acl.threads.can_read_threads(subforum) == 1 and subforum.last_poster_id == user.pk)) %}
  41. {% if subforum.last_thread_id -%}
  42. <div class="thread-name">
  43. <a href="{% url 'thread_new' thread=subforum.last_thread_id, slug=subforum.last_thread_slug %}"{% if subforum.last_thread_name|length > 36 %} class="tooltip-top" title="{{ subforum.last_thread_name }}"{% endif %}>{{ subforum.last_thread_name|short_string(36) }}</a>
  44. </div>
  45. <div class="muted">{% if subforum.last_poster_id %}<a href="{% url 'user' user=subforum.last_poster_id, username=subforum.last_poster_slug %}" class="last-poster">{{ subforum.last_poster_name }}</a>{% else %}<span class="last-poster">{{ subforum.last_poster_name }}</span>{% endif %} - {{ subforum.last_thread_date|reltimesince }}</div>
  46. {%- else -%}
  47. <em>{% trans %}This forum is empty{% endtrans %}</em>
  48. {%- endif %}
  49. {%- else -%}
  50. <em>{% trans %}This forum is protected{% endtrans %}</em>
  51. {%- endif %}
  52. {%- else -%}
  53. <div class="forum-clicks">{% trans clicks=macros.wrap(subforum.redirects|intcomma, 'strong') %}{{ clicks }} clicks{% endtrans %}</div>
  54. {%- endif %}
  55. </div>
  56. {% endif %}
  57. {% if subforum.subforums %}
  58. <div class="dropdown">
  59. <a href="{{ subforum.type|url(slug=subforum.slug, forum=subforum.id) }}#subforums" class="dropdown-toggle" data-toggle="dropdown"><i class="icon-chevron-down"></i> {% trans %}Subforums{% endtrans %}</a>
  60. <div class="dropdown-menu" role="menu" aria-labelledby="dLabel">
  61. <div class="dropdown-shadow">
  62. <ul>
  63. {% for subsubforum in subforum.subforums %}
  64. <li><a href="{{ subsubforum.type|url(slug=subsubforum.slug, forum=subsubforum.id) }}"><i class="icon-{% if subsubforum.type == 'redirect' %}circle-arrow-right{% else %}comment{% endif %}"></i> {{ subsubforum.name }}</a></li>
  65. {% endfor %}
  66. </ul>
  67. </div>
  68. </div>
  69. </div>
  70. {% endif%}
  71. <div class="hide forum-meta">
  72. {% if subforum.description %}<p class="forum-description">{{ subforum.description }}</p>{% endif %}
  73. <div class="forum-stats">
  74. {% if subforum.type != 'redirect' %}
  75. <span>{% trans %}Posts{% endtrans %}: <strong>{{ subforum.posts|intcomma }}</strong></span>
  76. {% trans %}Threads{% endtrans %}: <strong>{{ subforum.threads|intcomma }}</strong>
  77. {% else %}
  78. {% trans %}Clicks{% endtrans %}: <strong>{{ subforum.redirects|intcomma }}</strong>
  79. {% endif %}
  80. </div>
  81. </div>
  82. </td>
  83. </tr>
  84. {% endfor %}
  85. </tbody>
  86. </table>
  87. </div>
  88. {% endif %}
  89. {% if message %}
  90. <div class="messages-list">
  91. {{ macros.draw_message(message) }}
  92. </div>
  93. {% endif %}
  94. <div class="forum-threads-extra extra-top">
  95. {{ pager() }}
  96. {% if user.is_authenticated() and acl.threads.can_start_threads(forum) %}
  97. <a href="{% url 'thread_start' forum=forum.pk, slug=forum.slug %}" class="btn btn-inverse pull-right"><i class="icon-plus"></i> {% trans %}New Thread{% endtrans %}</a>
  98. {% endif %}
  99. </div>
  100. <div class="forum-threads-list">
  101. <table class="table">
  102. <thead>
  103. <tr>
  104. <th>{% trans %}Thread{% endtrans %}</th>
  105. <th class="span1">{% trans %}Rating{% endtrans %}</th>
  106. <th class="span5">{% trans %}Activity{% endtrans %}</th>
  107. {% if user.is_authenticated() and list_form %}
  108. <th class="check-cell"><label class="checkbox"><input type="checkbox" class="checkbox-master"></label></th>
  109. {% endif %}
  110. </tr>
  111. </thead>
  112. <tbody>
  113. {% for thread in threads %}
  114. <tr>
  115. <td>
  116. <a href="{% url 'thread_new' thread=thread.pk, slug=thread.slug %}" class="thread-icon{% if not thread.is_read %} thread-new{% endif %} tooltip-top" title="{% if not thread.is_read -%}
  117. {% trans %}Click to see first unread post{% endtrans %}
  118. {%- else -%}
  119. {% trans %}Click to see last post{% endtrans %}
  120. {%- endif %}"><i class="icon-comment"></i></a>
  121. <a href="{% url 'thread' thread=thread.pk, slug=thread.slug %}" class="thread-name">{{ thread.name }}</a>
  122. <span class="thread-details">
  123. {% trans user=thread_starter(thread), start=thread.start|reltimesince|low %}by {{ user }} {{ start }}{% endtrans %}
  124. </span>
  125. <ul class="unstyled thread-flags">
  126. {% if thread.replies_reported %}
  127. <li><i class="icon-warning-sign tooltip-top" title="{% trans %}This thread has reported replies{% endtrans %}"></i></li>
  128. {% endif %}
  129. {% if thread.replies_moderated %}
  130. <li><i class="icon-question-sign tooltip-top" title="{% trans %}This thread has unreviewed replies{% endtrans %}"></i></li>
  131. {% endif %}
  132. {% if thread.weight == 2 %}
  133. <li><i class="icon-star tooltip-top" title="{% trans %}This thread is an annoucement{% endtrans %}"></i></li>
  134. {% endif %}
  135. {% if thread.weight == 1 %}
  136. <li><i class="icon-star-empty tooltip-top" title="{% trans %}This thread is sticky{% endtrans %}"></i></li>
  137. {% endif %}
  138. {% if thread.moderated %}
  139. <li><i class="icon-eye-close tooltip-top" title="{% trans %}This thread awaits review{% endtrans %}"></i></li>
  140. {% endif %}
  141. {% if thread.deleted %}
  142. <li><i class="icon-trash tooltip-top" title="{% trans %}This thread is deleted{% endtrans %}"></i></li>
  143. {% endif %}
  144. {% if thread.closed %}
  145. <li><i class="icon-lock tooltip-top" title="{% trans %}This thread is closed{% endtrans %}"></i></li>
  146. {% endif %}
  147. </ul>
  148. </td>
  149. <td>
  150. <div class="thread-rating{% if (thread.upvotes-thread.downvotes) > 0 %} thread-rating-positive{% elif (thread.upvotes-thread.downvotes) < 0 %} thread-rating-negative{% endif %}">
  151. {% if (thread.upvotes-thread.downvotes) > 0 %}+{% elif (thread.upvotes-thread.downvotes) < 0 %}-{% endif %}{{ (thread.upvotes-thread.downvotes)|abs|intcomma }}
  152. </div>
  153. </td>
  154. <td>
  155. <div class="thread-last-reply">
  156. {{ replies(thread.replies) }} - {% trans user=thread_reply(thread), last=thread.last|reltimesince|low %}last by {{ user }} {{ last }}{% endtrans %}
  157. </div>
  158. </td>
  159. {% if user.is_authenticated() and list_form %}
  160. <td class="check-cell">{% if thread.forum_id == forum.pk %}<label class="checkbox"><input form="threads_form" name="{{ list_form['list_items']['html_name'] }}" type="checkbox" class="checkbox-member" value="{{ thread.pk }}"{% if list_form['list_items']['has_value'] and ('' ~ thread.pk) in list_form['list_items']['value'] %} checked="checked"{% endif %}></label>{% else %}&nbsp;{% endif %}</td>
  161. {% endif %}
  162. </tr>
  163. {% else %}
  164. <tr>
  165. <td colspan="4" class="threads-list-empty">
  166. {% trans %}There are no threads in this forum.{% endtrans %}
  167. </td>
  168. </tr>
  169. {% endfor %}
  170. </tbody>
  171. </table>
  172. {% if user.is_authenticated() and list_form %}
  173. <div class="threads-actions">
  174. <form id="threads_form" class="form-inline pull-right" action="{% url 'forum' slug=forum.slug, forum=forum.id, page=pagination['page'] %}" method="POST">
  175. <input type="hidden" name="{{ csrf_id }}" value="{{ csrf_token }}">
  176. {{ form_theme.input_select(list_form['list_action'],width=3) }}
  177. <button type="submit" class="btn btn-danger">{% trans %}Go{% endtrans %}</button>
  178. </form>
  179. </div>
  180. {% endif %}
  181. </div>
  182. <div class="forum-threads-extra">
  183. {{ pager() }}
  184. {% if user.is_authenticated() and acl.threads.can_start_threads(forum) %}
  185. <a href="{% url 'thread_start' forum=forum.pk, slug=forum.slug %}" class="btn btn-inverse pull-right"><i class="icon-plus"></i> {% trans %}New Thread{% endtrans %}</a>
  186. {% elif not user.is_authenticated() and not user.is_crawler() %}
  187. <p class="lead threads-signin-message"><a href="{% url 'sign_in' %}">{% trans %}Sign in or register to start threads.{% endtrans %}</a></p>
  188. {% endif %}
  189. </div>
  190. </div>
  191. {% endblock %}
  192. {% macro forum_stats(forum) -%}
  193. {% if forum.last_thread_id and not forum.attr('hidethread') -%}
  194. {% trans count=forum.posts, posts=fancy_number(forum.posts, forum.posts_delta), thread=forum_thread(forum) -%}
  195. {{ posts }} post - last in {{ thread }}
  196. {%- pluralize -%}
  197. {{ posts }} posts - last in {{ thread }}
  198. {%- endtrans %}
  199. {%- else -%}
  200. {% trans count=forum.posts, posts=fancy_number(forum.posts, forum.posts_delta) -%}
  201. {{ posts }} post
  202. {%- pluralize -%}
  203. {{ posts }} posts
  204. {%- endtrans %}
  205. {%- endif %}
  206. {%- endmacro %}
  207. {% macro forum_thread(forum) -%}
  208. <a href="{% url 'thread_new' thread=forum.last_thread_id, slug=forum.last_thread_slug %}">{{ forum.last_thread_name }}</a>
  209. {%- endmacro %}
  210. {% macro redirect_stats(forum) -%}
  211. {% trans count=forum.redirects, redirects=fancy_number(forum.redirects, forum.redirects_delta) -%}
  212. {{ redirects }} click
  213. {%- pluralize -%}
  214. {{ redirects }} clicks
  215. {%- endtrans %}
  216. {%- endmacro %}
  217. {% macro fancy_number(number, delta) -%}
  218. <strong{% if delta < number %} class="stat-increment"{% endif %}>{{ number|intcomma }}</strong>
  219. {%- endmacro %}
  220. {% macro replies(thread_replies) -%}
  221. {% trans count=thread_replies, replies=('<strong>' ~ (thread_replies|intcomma) ~ '</strong>')|safe -%}
  222. {{ replies }} reply
  223. {%- pluralize -%}
  224. {{ replies }} replies
  225. {%- endtrans %}
  226. {%- endmacro %}
  227. {% macro thread_starter(thread) -%}
  228. {% if thread.start_poster_id %}<a href="{% url 'user' user=thread.start_poster_id, username=thread.start_poster_slug %}" class="user-link">{{ thread.start_poster_name }}</a>{% else %}{{ thread.start_poster_name }}{% endif %}
  229. {%- endmacro %}
  230. {% macro thread_reply(thread) -%}
  231. {% if thread.last_poster_id %}<a href="{% url 'user' user=thread.last_poster_id, username=thread.last_poster_slug %}" class="user-link">{{ thread.last_poster_name }}</a>{% else %}{{ thread.last_poster_name }}{% endif %}
  232. {%- endmacro %}
  233. {% macro pager() %}
  234. {% if pagination['total'] > 0 %}
  235. <div class="pagination pull-left">
  236. <ul>
  237. <li class="count">{{ macros.pager_label(pagination) }}</li>
  238. {%- if pagination['prev'] > 1 %}<li><a href="{% url 'forum' slug=forum.slug, forum=forum.id %}" class="tooltip-top" title="{% trans %}First Page{% endtrans %}"><i class="icon-chevron-left"></i> {% trans %}First{% endtrans %}</a></li>{% endif -%}
  239. {%- if pagination['prev'] > 0 %}<li><a href="{%- if pagination['prev'] > 1 %}{% url 'forum' slug=forum.slug, forum=forum.id, page=pagination['prev'] %}{% else %}{% url 'forum' slug=forum.slug, forum=forum.id %}{% endif %}" class="tooltip-top" title="{% trans %}Newest Threads{% endtrans %}"><i class="icon-chevron-left"></i></a></li>{% endif -%}
  240. {%- if pagination['next'] > 0 %}<li><a href="{% url 'forum' slug=forum.slug, forum=forum.id, page=pagination['next'] %}" class="tooltip-top" title="{% trans %}Older Threads{% endtrans %}"><i class="icon-chevron-right"></i></a></li>{% endif -%}
  241. </ul>
  242. </div>
  243. {% endif %}
  244. {% endmacro %}
  245. {% block javascripts -%}{{ super() }}
  246. <script type="text/javascript">
  247. $(function () {
  248. function populateForumTooltip(target) {
  249. return $('#forum-' + target + ' .forum-meta').html();
  250. };
  251. {% for category in forums_list %}{% for forum in category.subforums %}
  252. $('#forum-{{ forum.id }} .forum-title').tooltip({
  253. template: '<div class="tooltip forum-meta-tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',
  254. placement: 'right',
  255. html: true,
  256. title: populateForumTooltip({{ forum.id }})
  257. });
  258. {% endfor %}{% endfor %}
  259. {%- if user.is_authenticated() and list_form %}
  260. $('#threads_form').submit(function() {
  261. if ($('.check-cell[]:checked').length == 0) {
  262. alert("{% trans %}You have to select at least one thread.{% endtrans %}");
  263. return false;
  264. }
  265. if ($('#id_list_action').val() == 'hard') {
  266. var decision = confirm("{% trans %}Are you sure you want to delete selected threads? This action is not reversible!{% endtrans %}");
  267. return decision;
  268. }
  269. return true;
  270. });{% endif %}
  271. });
  272. </script>
  273. {%- endblock %}