{% extends "base.html" %} {% block title %}Contexts{% endblock %} {% block content %}
Clear
{% if contexts %}
{% for ctx in contexts %} {% endfor %}
Type Content Tags Source Created Accessed Actions
{{ ctx.type }} {{ ctx.content[:80] }}{% if ctx.content|length > 80 %}...{% endif %} {% for tag in ctx.tags[:3] %} {{ tag }} {% endfor %} {% if ctx.tags|length > 3 %} +{{ ctx.tags|length - 3 }} {% endif %} {{ ctx.source[:20] }}{% if ctx.source|length > 20 %}...{% endif %} {{ ctx.created_at.strftime('%Y-%m-%d') }} {% if ctx.accessed_at %} {{ ctx.accessed_at.strftime('%Y-%m-%d') }} {% else %} - {% endif %} View Edit Delete
{% if total_pages > 1 %} {% endif %}

Showing {{ contexts|length }} of {{ total_contexts }} contexts

{% else %}

No contexts found

{% if filter_type or filter_tags or search_query %}

Try adjusting your filters or clear all filters.

{% else %}

Add your first context to get started.

{% endif %}
{% endif %} {% endblock %}