diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/main/bot/clean_logs.html | 12 |
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> + |