add new func

This commit is contained in:
danamir
2024-06-09 21:45:04 +03:00
parent 0bcde72bba
commit 40bb5d83f0
6 changed files with 230 additions and 12 deletions

View File

@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Создать комиссию</title>
</head>
<body>
<div class="row">
<label>ГЭК №</label>
<input type="text" name="myInput" size="30" required id="gaknumber">
</div>
<div class="row">
<label>Председатель</label>
<select id="predesdatel">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Участник</label>
<select id="uchgak1">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Участник</label>
<select id="uchgak2">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Участник</label>
<select id="uchgak3">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Участник</label>
<select id="uchgak4">
<option>--Выбери--</option>
</select>
</div>
<div class="row">
<label>Секретарь</label>
<select id="secretar">
<option>--Выбери--</option>
</select>
</div>
<button type="button" id="addcom">
Добавить ГЭК
</button>
</body>
<script src="{{url_for('static', filename='js/jquery-3.7.1.js')}}"></script>
<script src="{{url_for('static', filename='js/createcommision.js')}}"></script>
</html>

View File

@@ -17,6 +17,10 @@
<input type="checkbox" value="yes" id="recentzent">
Рецензент
</label>
<label>
<input type="checkbox" value="yes" id="secretar">
Секретарь
</label>
<button type="button" name="AddChlenKom" id="addbtn">
Добавить
</button>