mirror of
https://gitea.augustin64.fr/piair/MsRewards-Reborn.git
synced 2025-06-22 09:53:57 +02:00
updated webUI according to param changes
This commit is contained in:
21
Flask/templates/logs.html
Normal file
21
Flask/templates/logs.html
Normal file
@ -0,0 +1,21 @@
|
||||
{% extends "base.html" %}
|
||||
{% block left_pannel %}logs{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
{%if not current_user.is_authenticated %}
|
||||
<h1>Already logged in</h1>
|
||||
{% else %}
|
||||
|
||||
<select name="select" onchange="change_logs(this.value)">
|
||||
<option id="null" value="0">Choisir une config</option>
|
||||
{% for i in data %}
|
||||
<option id="{{data[i]['name']}}" value="{{i}}">{{data[i]['name']}}</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<br><br>
|
||||
<iframe type="text/html" src="{{url_for('static', filename='logs/1.txt')}}" width="100%" height="85%" id="embed">
|
||||
|
||||
|
||||
|
||||
{% endif %}
|
||||
{% endblock %}
|
Reference in New Issue
Block a user