{% extends "base.html" %} {% block title %}{{ created_by }} — nx console{% endblock %} {% block content %}

{{ created_by }}

{{ total_links }} links, {{ total_docs }} documents

← Back to campaigns {% if links_by_type %}

Links by Type

{% for link_type, type_links in links_by_type.items() %}
{{ link_type }} ({{ type_links | length }}) {% for link in type_links[:50] %} {% endfor %} {% if type_links | length > 50 %} {% endif %}
FromToCreated
{{ link.get('from_t', '') }} {{ link.get('to_t', '') }} {{ link.get('created_at', '')[:19] }}
... and {{ type_links | length - 50 }} more
{% endfor %} {% endif %} {% if docs %}

Documents ({{ docs | length }})

{% for doc in docs[:50] %} {% endfor %} {% if docs | length > 50 %} {% endif %}
TumblerTitleTypeIndexed
{{ doc.get('tumbler', '') }} {{ doc.get('title', '') }} {{ doc.get('content_type', '') }} {{ doc.get('indexed_at', '')[:19] }}
... and {{ docs | length - 50 }} more
{% endif %} {% endblock %}