aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2018-07-21 04:48:54 +0200
committerGravatar Leon Sandøy <[email protected]>2018-07-21 04:48:54 +0200
commit3a9ceaccb5326ff3b569e3f948b94107b7c26ee2 (patch)
tree9fd4e017965e20467b551193284c55533fc5161c /templates/main
parentMerge branch 'update-dev-env' into 'master' (diff)
Completed the clean API and the clean frontend.
Diffstat (limited to 'templates/main')
-rw-r--r--templates/main/bot/clean_logs.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/main/bot/clean_logs.html b/templates/main/bot/clean_logs.html
new file mode 100644
index 00000000..c67eeab8
--- /dev/null
+++ b/templates/main/bot/clean_logs.html
@@ -0,0 +1,12 @@
+<html class="clean_logs">
+ <head>
+ <link rel="stylesheet" href="{{ static_file('css/style.css') }}"/>
+ </head>
+ <body>
+ {% for message in messages %}
+ <span class="nick" style="color: {{ message.color }}">{{ message.author }}<span class="time">{{ message.timestamp }}</span></span><br>
+ <span class="text">{{ message.content }}</span>
+ {% endfor %}
+ </body>
+</html>
+