2023-06-17 16:52:47 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block left_pannel %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{%if not current_user.is_authenticated %}
|
|
|
|
<button class="unselected" onclick="location.href = '/login';">login</button>
|
|
|
|
{% else %}
|
2023-09-27 10:19:01 +02:00
|
|
|
<embed type="text/html" src="{{url_for('static', filename='logs/dev.txt')}}" width="100%" height="85%" id="embed">
|
2023-06-17 16:52:47 +02:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|