Browse Source

Fixes Recent posts show nothing #157, because I forgot the length check. Reverts to use not because it is simpler than using default empty array and length

pull/40/head
Benjamin Southall 5 years ago
parent
commit
b6e1439755
  1. 2
      templates/mod/recent_posts.html

2
templates/mod/recent_posts.html

@ -1,5 +1,5 @@
<script src="{{ config.additional_javascript_url }}js/mod/recent_posts.js"></script>
{% if posts|default([])|length %}
{% if not posts %}
<p style="text-align:center" class="unimportant">({% trans 'There are no active posts.' %})</p>
{% else %}
<h4>Viewing last {{ limit|e }} posts</h4>

Loading…
Cancel
Save