From d5a00a844fa2d11c8e2584c2184cd1b1e33ff8ae Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Sun, 22 Feb 2015 22:57:47 +0100 Subject: [PATCH] Bugfix: Images should be visible on "latest entries"... ...in the same way as on "post list" :) --- .../templates/djangocms_blog/plugins/latest_entries.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/djangocms_blog/templates/djangocms_blog/plugins/latest_entries.html b/djangocms_blog/templates/djangocms_blog/plugins/latest_entries.html index 726aa1d..b43bea6 100644 --- a/djangocms_blog/templates/djangocms_blog/plugins/latest_entries.html +++ b/djangocms_blog/templates/djangocms_blog/plugins/latest_entries.html @@ -2,7 +2,7 @@
{% for post in posts_list %} - {% include "djangocms_blog/includes/blog_item.html" with post=post TRUNCWORDS_COUNT=TRUNCWORDS_COUNT %} + {% include "djangocms_blog/includes/blog_item.html" with post=post image="true" TRUNCWORDS_COUNT=TRUNCWORDS_COUNT %} {% empty %}

{% trans "No article found." %}

{% endfor %}