{% extends "themis/base.html" %} {% block title %}{{ concept.name }} — Concepts — Mnemosyne{% endblock %} {% block content %}
{% if error %}
{{ error }}
{% endif %} {% if concept %}

{{ concept.name }}

{% if concept.concept_type %} {{ concept.concept_type }} {% endif %}
Chunks Mentioning
{{ chunk_count }}
Images Depicting
{{ image_count }}
Connected Items
{{ items|length }}
Related Concepts
{{ related_concepts|length }}
{% if related_concepts %}

Related Concepts

{% for rc in related_concepts %} {{ rc.name }} {% if rc.concept_type %} ({{ rc.concept_type }}) {% endif %} {% endfor %}
{% endif %} {% if items %}

Connected Items

{% for item in items %} {% endfor %}
Title
{{ item.title }}
{% endif %}
← Back to Concepts Search for "{{ concept.name }}"
{% else %}
Concept not found.
{% endif %}
{% endblock %}