diff --git a/templates/stream_debug.html b/templates/stream_debug.html new file mode 100644 index 0000000..6b4a96e --- /dev/null +++ b/templates/stream_debug.html @@ -0,0 +1,19 @@ +{% extends "layout.html" %} +{% import 'utils.html' as utils %} +{% block title %}{% if request.path == url_for('admin_stream') %}Stream{% else %}Notifications{% endif %} - {{ config.NAME }}{% endblock %} +{% block content %} +
+{% include "header.html" %} +
+ +
+ {% for item in inbox_data %} +
{{ item |remove_mongo_id|tojson(indent=4) }}
+ {% endfor %} + + {{ utils.display_pagination(older_than, newer_than) }} +
+
+ +
+{% endblock %}