From: Radek Czajka Date: Mon, 23 Jan 2012 14:17:16 +0000 (+0100) Subject: cache fix X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/691ee7c0396998d88b22c53da94e28a55874c914?hp=b2d05b5ed588e0829c4cec01796a20a803b301db cache fix --- diff --git a/apps/social/templates/social/cite_promo.html b/apps/social/templates/social/cite_promo.html index 5caaf1db5..04866f14b 100755 --- a/apps/social/templates/social/cite_promo.html +++ b/apps/social/templates/social/cite_promo.html @@ -3,7 +3,7 @@ {% if cite %} {% if cite.vip %} -

{{ cite.vip }} {% trans "recommends" %}:

+

{{ cite.vip }} {% trans "recommends" %}:

{% endif %}
{{ cite.text|linebreaks|safe }} diff --git a/wolnelektury/static/css/cite.css b/wolnelektury/static/css/cite.css index 54632976b..c86ea6504 100755 --- a/wolnelektury/static/css/cite.css +++ b/wolnelektury/static/css/cite.css @@ -15,7 +15,9 @@ a.cite { } .cite .vip { - margin-top: 0; + margin: 0; + color: #575C63; + font-size: 1.1em; } @@ -23,7 +25,6 @@ a.cite { #big-cite { background-color: white; - /*padding: 10.75em 10em 8.5em 18.2em;*/ padding: 0; margin: 0; } diff --git a/wolnelektury/templates/catalogue/book_detail.html b/wolnelektury/templates/catalogue/book_detail.html index 17207d1b7..a1a62fe24 100644 --- a/wolnelektury/templates/catalogue/book_detail.html +++ b/wolnelektury/templates/catalogue/book_detail.html @@ -1,5 +1,5 @@ {% extends "base.html" %} -{% load i18n %} +{% load cache i18n %} {% load catalogue_tags pagination_tags %} {% block titleextra %}{{ book.title }}{% endblock %} @@ -14,6 +14,10 @@ {% work_list book_children %} -{% related_books book %} + +

{% trans "See also" %}:

+{% cache 1800 book-detail-related book.slug %} + {% related_books book %} +{% endcache %} {% endblock %}