From 2f25540092ee00fe9cd27dd702f93b6feab870ea Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Mon, 23 Jul 2018 22:15:07 +0200 Subject: [PATCH] Oops add missing template --- templates/stream_debug.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 templates/stream_debug.html 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 %}