The version of vichan running on lainchan.org
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

43 líneas
1.8KB

  1. {% filter remove_whitespace %}
  2. {# tabs and new lines will be ignored #}
  3. {# we are intentionally breaking the thread_ID convention: the jses need to handle this case differently #}
  4. <tr id="filethread_{{ post.id }}" class="intro" data-board="{{ board.uri }}">
  5. <td><input type="checkbox" class="delete" name="delete_{{ post.id }}" id="delete_{{ post.id }}" />
  6. <td><a class="post_no" onclick="citeReply({{ post.id }})" href="{{ post.link('q') }}">{{ post.id }}</a>
  7. <td>{% include 'post/name.html' %}
  8. {% include 'post/flag.html' %}
  9. <td>[<a href="{{ config.uri_img }}{{ post.files[0].file }}">{{ post.files[0].filename|e|bidi_cleanup }}</a>]
  10. <td>{% if post.modifiers['tag'] %}[{{ post.modifiers['tag']|e }}]{% endif %}
  11. <td>{% include 'post/subject.html' %}
  12. {% if post.sticky %}
  13. {% if config.font_awesome %}
  14. <i class="fa fa-thumb-tack"></i>
  15. {% else %}
  16. <img class="icon" title="Sticky" src="{{ config.image_sticky }}" alt="Sticky" />
  17. {% endif %}
  18. {% endif %}
  19. {% if post.locked %}
  20. {% if config.font_awesome %}
  21. <i class="fa fa-lock"></i>
  22. {% else %}
  23. <img class="icon" title="Locked" src="{{ config.image_locked }}" alt="Locked" />
  24. {% endif %}
  25. {% endif %}
  26. {% if post.bumplocked and (config.mod.view_bumplock < 0 or (post.mod and post.mod|hasPermission(config.mod.view_bumplock, board.uri))) %}
  27. {% if config.font_awesome %}
  28. <i class="fa fa-anchor"></i>
  29. {% else %}
  30. <img class="icon" title="Bumplocked" src="{{ config.image_bumplocked }}" alt="Bumplocked" />
  31. {% endif %}
  32. {% endif %}
  33. <td>{{ post.files[0].size|filesize }}
  34. <td>{% include 'post/time.html' %}
  35. <td>{{ post.omitted }}
  36. <td>{% include 'post/post_controls.html' %}
  37. <a href="{{ post.root }}{{ board.dir }}{{ config.dir.res }}{{ link_for(post) }}">[{% trans %}Reply{% endtrans %}]</a>
  38. </tr>
  39. {% endfilter %}