2014-03-25 07:09:12 -04:00
|
|
|
<script src="{{ config.additional_javascript_url }}js/mod/recent_posts.js"></script>
|
2014-07-19 14:41:48 -04:00
|
|
|
{% if not posts|count %}
|
2014-03-17 18:11:16 -04:00
|
|
|
<p style="text-align:center" class="unimportant">({% trans 'There are no active posts.' %})</p>
|
|
|
|
{% else %}
|
2014-07-19 14:41:48 -04:00
|
|
|
<h4>Viewing last {{ limit|e }} posts</h4>
|
|
|
|
<p>View <a href="?/recent/25"> 25 </a>|<a href="?/recent/50"> 50 </a>|<a href="?/recent/100"> 100 </a></p>
|
|
|
|
<a href="javascript:void(0)" id="erase-local-data" style="float:right; clear:both">Erase local data</a></div>
|
|
|
|
{% for post in posts %}
|
2014-07-21 12:54:51 -04:00
|
|
|
{% if not post.thread %}
|
|
|
|
{% set thread = post.id %}
|
|
|
|
{% else %}
|
|
|
|
{% set thread = post.thread %}
|
|
|
|
{% endif %}
|
2015-08-10 23:16:23 -04:00
|
|
|
<div class="post-wrapper" data-board="{{ post.board }}"><hr/><a class="eita-link" id="eita-{{ post.board }}-{{ thread }}" href="?/{{ post.board }}/{{ config.dir.res }}{{ thread }}.html#{{ post.id }}">/{{ post.board }}/{{ post.id }}</a><br>
|
2014-07-19 14:41:48 -04:00
|
|
|
{{ post.built }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2014-03-25 07:09:12 -04:00
|
|
|
{% endif %}
|
2014-07-19 14:47:34 -04:00
|
|
|
<a href="/mod.php?/recent/{{ limit|e }}&last={{ last_time|e }}">Next {{ limit }} posts</a>
|