Component
{{uc_item.ob.strength}}
name
{{ uc_item.ob.name|escape }}
description
{{uc_item.ob.description|escape}}
{{uc_item.ob}}
|
{% literalize uc_item.deletion_date as del_date %}
{% literalize uc_item.deletion_active as del_active %}
{{del_date}}
{{del_active}}
{% if uc_item.ob.is_index or request.user != uc_item.ob.user %}
{% blocktrans %}Protected{% endblocktrans %}
{% elif uc_item.deletion_active %}
{% blocktrans with deletion_date=uc_item.deletion_date %}Deletion at {{deletion_date}} complete{% endblocktrans %}
{% elif uc_item.deletion_date <= now %}
{% blocktrans %}Delete now{% endblocktrans %}
{% else %}
{% blocktrans with deletion_date=uc_item.deletion_date %}Delete at {{deletion_date}}{% endblocktrans %}
{% endif %}
|
|
{% for content_id, content_item in uc_item.contents.items %}