{% extends "base.html" %} {% block title %}Entries - Workshop Admin{% endblock %} {% block content %}

All Entries

{{ total }} total entries

Clear
{% for entry in entries %}
{{ entry.type }} {{ entry.timestamp|timeago }}

{{ entry.content[:200] }}{% if entry.content|length > 200 %}...{% endif %}

{% if entry.metadata %}

{{ entry.metadata[:100] }}{% if entry.metadata|length > 100 %}...{% endif %}

{% endif %}
{% else %}

No entries found

{% endfor %}
{% if total_pages > 1 %}
{% if page > 1 %} Previous {% endif %} {% if page < total_pages %} Next {% endif %}
{% endif %}
{% endblock %}