First Initialization

This commit is contained in:
aliakbar
2026-06-29 15:32:24 +03:30
commit 29c2add74e
105 changed files with 13177 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<!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>