Oops add missing template
This commit is contained in:
parent
c55cfa1f8a
commit
2f25540092
1 changed files with 19 additions and 0 deletions
19
templates/stream_debug.html
Normal file
19
templates/stream_debug.html
Normal file
|
@ -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 %}
|
||||
<div class="h-feed" id="container">
|
||||
{% include "header.html" %}
|
||||
<div id="admin">
|
||||
|
||||
<div id="notes">
|
||||
{% for item in inbox_data %}
|
||||
<pre><code>{{ item |remove_mongo_id|tojson(indent=4) }}</code></pre>
|
||||
{% endfor %}
|
||||
|
||||
{{ utils.display_pagination(older_than, newer_than) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue