{% 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 'Up (Owned)' %} {% else %} {% trans 'up (Public)' %} {% endif %} {% if request.user == uc.user %} {% endif %}
{% trans 'Link/Export' %}
{% trans "Strength:" %} {{uc.strength}}

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

{% if uc.description %}
{{uc.description|linebreaks}}
{% endif %} {% if request.token_expires %}
{% include 'spider_base/token_lifetime.html' with rtime=request.token_expires %}
{% endif %}
{% list_parameters "search" as cur_search %} {% list_parameters "info" as cur_info %} {% if uc.user == request.user and not cur_search and not cur_info %}
{% trans 'Add new content' %}
{% for variant in content_variants %} {% if uc.strength < variant.strength %}
{{variant}}
{% else %} {{variant}} {% endif %} {% empty %} {% trans 'No Content Variants available.' %} {% endfor %}
{% endif %}
{% for content in object_list %} {% empty %} {% endfor %}
{{ content.content|truncatechars:50 }} {% if uc.public or request.user == uc.user %} {% blocktrans trimmed with time=content.modified|timesince %} Modified: {{time}} ago {% endblocktrans %} {% endif %}
{% if uc.user == request.user %}
{% endif %}
{% trans 'No User Content available.' %}
{% include 'spider_base/list_footer.html' %}
{% endblock %} {% block outercontent %} {% if request.user == uc.user %} {% url 'spider_base:ucontent-export' id=uc.id nonce=uc.nonce as exportlink %} {% endif %} {% include "spider_base/modalpresenter.html" %} {% endblock %}