I use:
I would like to check if my placeholder is empty.
{
There is no built-in way to do this at the moment in django-cms, so you have to write a custom template tag. There are some old discussions about this on the django-cms
Google Group:
Based on the code in the first discussion, I've put together the following Gist:
I use it like so:
{% load extra_cms_tags %}
{% get_placeholder "My Placeholder" as my_placeholder %}
{% if my_placeholder %}
{{ my_placeholder }}
{% endif %}