diff --git a/boards/templates/boards/landing.html b/boards/templates/boards/landing.html --- a/boards/templates/boards/landing.html +++ b/boards/templates/boards/landing.html @@ -26,7 +26,8 @@ {% endif %} {% endwith %}
{{ op.thread.get_sections_str }}
-
{{ op.get_link_view }} +{{ op.today_post_count }}
+
{{ op.get_link_view }}
+
{{ op.thread.last_edit_time }}
{% endfor %} diff --git a/boards/views/landing.py b/boards/views/landing.py --- a/boards/views/landing.py +++ b/boards/views/landing.py @@ -31,7 +31,7 @@ class LandingView(BaseBoardView): .annotate(today_post_count=Count('thread__replies'))\ .order_by('-pub_time') - max_landing_threads = settings.get_int('View', 'MaxFavoriteThreads') + max_landing_threads = settings.get_int('View', 'MaxLandingThreads') if max_landing_threads > 0: ops = ops[:max_landing_threads]