{% load i18n %} {% trans "default" as default_time %} {% for placeholder in runs %} {% if placeholder.slot == 'shared_content' %}

Sharedcontent "{{ placeholder.debug_name }}"

{% else %}

Placeholder "{{ placeholder.debug_name }}"

{% endif %} {% for item in placeholder.items %} {% endfor %}
{% trans "Parent" %}{{ placeholder.parent_model }} #{{ placeholder.parent_id }}
{% trans "Cachable" %} {% if not placeholder.initial_all_cachable %} {% trans "no, due to template setting" %} {% elif not placeholder.all_cachable %} {% trans "no" %} {% else %} {% trans "yes" %} {% endif %}
{% trans "Cache timeout" %}{{ placeholder.all_timeout_str|default_if_none:default_time }}


{{ item.model }}#{{ item.pk }}
{% if item.status == 'cached' %} {% trans "(from cache)" %} {% elif item.status == 'skipped' %} {% trans "(skipped!)" %} {% elif item.status == 'missing' %} {% trans "(missing!)" %} {% else %} {% trans "(fetched!)" %} {% endif %}
{% trans "Plugin" %}{{ item.plugin_path }}
{% trans "Model" %}{{ item.model_path }}
{% trans "Template" %} {% if not item.templates %}-{% else %}{{ item.templates|join:"
" }}
{% endif %} {% if item.templates_dummy %}({% trans "guessed" %}){% endif %}
{% trans "Cachable" %} {% if not item.cache_output %}{% trans "no" %}{% else %} {% trans "yes" %}{% if item.cache_output_per_site %}, {% trans "per site" %}{% endif %}{% if item.cache_output_per_language %}, {% trans "per gettext language" %}{% endif %}{% if item.cache_timeout %}, {{ item.cache_timeout_str }}{% endif %} {% endif %}
{% endfor %}