2023-08-25 13:20:51 +02:00
|
|
|
{% extends "base.html" %}
|
2023-09-20 13:13:41 +02:00
|
|
|
{% block left_pannel %}logs{% endblock %}
|
2023-08-25 13:20:51 +02:00
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{%if not current_user.is_authenticated %}
|
|
|
|
<h1>Already logged in</h1>
|
|
|
|
{% else %}
|
2023-08-25 14:39:13 +02:00
|
|
|
|
2023-08-25 15:25:32 +02:00
|
|
|
<select name="select" onchange="change_logs(this.value)">
|
2023-08-29 10:54:58 +02:00
|
|
|
<option id="null" value="0">Choisir une config</option>
|
|
|
|
{% for i in data %}
|
2023-08-25 15:12:31 +02:00
|
|
|
<option id="{{data[i]['name']}}" value="{{i}}">{{data[i]['name']}}</option>
|
2023-08-29 10:54:58 +02:00
|
|
|
{% endfor %}
|
2023-08-25 15:12:31 +02:00
|
|
|
</select>
|
2023-08-26 12:55:46 +02:00
|
|
|
<br><br>
|
2023-09-27 10:36:41 +02:00
|
|
|
<iframe type="text/html" src="{{url_for('static', filename='logs/1.txt')}}" width="100%" height="85%" id="embed">
|
2023-08-25 15:12:31 +02:00
|
|
|
|
2023-08-25 15:23:33 +02:00
|
|
|
|
2023-08-25 14:06:03 +02:00
|
|
|
|
2023-08-25 13:20:51 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|