2023-11-23 00:57:08 +04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport"
|
|
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for( 'static', filename='index.css', v=1)}}">
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
|
|
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
|
|
|
|
<title>Tree</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<form action="/" method="get">
|
|
|
|
<div class="mb-5 mt-3">
|
|
|
|
<label class="form-label">Вывод дерева</label>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<input type=submit value='Главная'>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div class="">
|
2023-11-23 16:12:33 +04:00
|
|
|
{% for item in DataTree %}
|
|
|
|
{% if item.count("\t") == 1 %}
|
|
|
|
<p style="margin-left: 50px;"> {{ item }}</p>
|
|
|
|
{% elif item.count("\t") == 2 %}
|
|
|
|
<p style="margin-left: 100px;"> {{ item }}</p>
|
|
|
|
{% else %}
|
|
|
|
<p>{{ item }}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2023-11-23 00:57:08 +04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|