first commit

This commit is contained in:
sajjadtalkhabi
2026-05-13 01:43:05 +03:30
commit d2a577f254
297 changed files with 36274 additions and 0 deletions
+57
View File
@@ -0,0 +1,57 @@
export const adminTerms = [
{
id: 1,
title: 'ترم پاییز ۱۴۰۴',
description: 'ترم پاییز با محوریت آموزش معارف اسلامی.',
image: 'https://picsum.photos/seed/term1/200/200',
startDate: '2025-09-23T00:00:00.000Z',
endDate: '2026-01-20T00:00:00.000Z',
isActive: true,
studentsCount: 18,
coursesCount: 4,
createdAt: '2025-08-01T08:00:00.000Z',
},
{
id: 2,
title: 'ترم زمستان ۱۴۰۴',
description: 'ترم زمستان با تمرکز بر فقه و اصول.',
image: 'https://picsum.photos/seed/term2/200/200',
startDate: '2026-01-21T00:00:00.000Z',
endDate: '2026-04-20T00:00:00.000Z',
isActive: true,
studentsCount: 12,
coursesCount: 3,
createdAt: '2025-11-10T08:00:00.000Z',
},
{
id: 3,
title: 'ترم بهار ۱۴۰۵',
description: 'ترم بهار ویژه دوره‌های تخصصی.',
image: '',
startDate: '2026-04-21T00:00:00.000Z',
endDate: '2026-08-21T00:00:00.000Z',
isActive: false,
studentsCount: 0,
coursesCount: 2,
createdAt: '2026-02-15T08:00:00.000Z',
},
]
export const termStudentLinks = new Map([
[
1,
[
{ userId: 100, isOnLeave: false },
{ userId: 101, isOnLeave: false },
{ userId: 102, isOnLeave: true },
{ userId: 103, isOnLeave: false },
],
],
[
2,
[
{ userId: 104, isOnLeave: false },
{ userId: 105, isOnLeave: false },
],
],
])