Files
Mehvar/templates/index.html
T

26 lines
866 B
HTML
Raw Normal View History

2026-06-29 15:32:24 +03:30
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<title>داشبورد پردازش متن</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div class="container">
<h1>پروژه‌های گذشته</h1>
<a href="/new_project" class="btn">+ ایجاد پروژه جدید</a>
<hr style="border-color: #444; margin: 20px 0;">
<ul class="project-list">
{% for project in projects %}
<li>
<span>پروژه: {{ project }}</span>
<a href="/tree/{{ project }}">مشاهده درخت</a>
</li>
{% else %}
<li>هیچ پروژه‌ای یافت نشد.</li>
{% endfor %}
</ul>
</div>
</body>
</html>