In my front page template I use the cache function like this:
{% cache 86400 my_posts %} {% get_latest_posts %} {% endcache %}
When there i
from django.core.cache import cache from django.core.cache.utils import make_template_fragment_key cache.delete(make_template_fragment_key('footer'))