{% extends "spider_base/uc_base.html" %} {% load i18n static spider_base spider_paging spider_rdf %} {% block title %}{% if uc.public %}{% blocktrans trimmed %} Content of: {% endblocktrans %} {{uc}} ({{uc.username}}){% else %}{% blocktrans trimmed %} Content List {% endblocktrans %}{% endif %}{% endblock %} {% block public_meta %} {{block.super}} {% endblock %} {% block extrahead %} {{block.super}} {% if DEBUG %} {% else %} {% endif %} {% endblock %} {% block content %}
{% if request.user == uc.user %} {% trans 'Own' %} {% endif %} {% trans 'Public' %} {% if request.user == uc.user %} {% trans 'Update' %} {% endif %} {% if request.is_staff and uc.user != request.user %} {% trans 'User' %} {% endif %} {% trans 'Share' %}
{% trans "Strength:" %} {% if request.is_special_user %}{{uc.strength}}{% else %}{{uc.untrusted_strength}}{% endif %}

{% if request.is_special_user or uc.public %} {% blocktrans trimmed %} Content of: {% endblocktrans %} {{uc}} ({{uc.user}}) {% else %} {% blocktrans trimmed %} Content: {% endblocktrans %} {% endif %}

{% for f in active_listed_features %} {% for action in f.feature_urls %} {% endfor %} {% endfor %} {% if uc.description %}
{{uc.description|linebreaks}}
{% endif %} {% if request.token_expires %}
{% include 'spider_base/partials/token_lifetime.html' with rtime=request.token_expires %}
{% endif %}
{% list_parameters "search" as cur_search %} {% if request.is_owner and not cur_search %}
{% trans 'Add new content' %}
{% include "spider_base/partials/content_variants_box.html" %}
{% endif %} {% if active_listed_features.exists %}

{% trans 'Active Component Features' %}:

{% for f in active_listed_features %} {{f}}{% if not forloop.last %}, {% endif %} {% endfor %}
{% endif %}
{% for content in object_list %} {% empty %} {% endfor %}
{{ content.name }}({{ content.ctype }}) {% if uc.public or request.is_special_user %} {% blocktrans trimmed with time=content.modified|timesince %} Modified: {{time}} ago {% endblocktrans %} {% endif %}
{% if request.is_special_user %}
{% endif %}
{% with content.localized_description as description %} {% if not description|is_not_or_space %} {{description|escape|linebreaksbr}} {% else %} {% trans 'No description' %} {% endif %} {% endwith %}
{% trans 'No User Content available.' %}
{% list_parameters "search" as cur_search %} {% if request.is_special_user and has_unlisted and "_unlisted" not in cur_search %} {% blocktrans trimmed %} This Component contains unlisted content, use "_unlisted" in search to see and edit them {% endblocktrans %} {% endif %} {% include 'spider_base/partials/list_footer.html' %}
{% endblock %} {% block outercontent %} {% include "spider_base/partials/modalpresenter.html" %} {% endblock %}