Добавлена страница создание кафедры/специальности

This commit is contained in:
2026-03-25 23:18:05 +03:00
parent 3861fa05b5
commit 7ce0d1e501
7 changed files with 239 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ import { initSubjects } from './views/subjects.js';
import {initSchedule} from "./views/schedule.js";
import {initDatabase} from "./views/database.js";
import {initDepartment} from "./views/department.js";
import {initDepartmentsData} from "./views/departments-data.js";
// Configuration
const ROUTES = {
@@ -24,6 +25,7 @@ const ROUTES = {
schedule: { title: 'Расписание занятий', file: 'views/schedule.html', init: initSchedule },
database: { title: 'База данных', file: 'views/database.html', init: initDatabase },
department: { title: 'Кафедры', file: 'views/department.html', init: initDepartment },
'departments-data': { title: 'Создание кафедры/специальности', file: 'views/departments-data.html', init: initDepartmentsData },
};
let currentTab = null;