-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.html
104 lines (91 loc) · 4.02 KB
/
admin.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="cache-control" content="no-cache">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="img/iap.png" type="image/png">
<title>Страница редактирования</title>
<link href="css/fonts.css" rel="stylesheet">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<link href="css/admin.css" rel="stylesheet">
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="js/html5shiv.min.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2 class="text-center">Радактирование шаблона плана-графика</h2>
</div>
</div>
</div>
<div class="container ">
<div class="row detail">
<div class="col-md-4">
<h3>Список шаблонов</h3>
<ul class="list-plan list-unstyled" id="listItem">
<li style="padding-bottom: 15px"><a class="btn btn-success" href="#">Добавить план-график</a></li>
</ul>
</div>
<div class="col-md-8 param-tmpl">
<h3>Параметры шаблона</h3>
<section style="margin-bottom: 50px;">
<form id="formTMPL" name="formTMPL" role="form">
<input type="hidden" name="IdPlan" id="IdPlan">
<div class="form-group">
<label for="titleName">Заголовок</label>
<input type="text" name="titleName" class="form-control" id="titleName" placeholder="Заголовок">
</div>
<div class="row">
<div class="col-md-3"><div class="form-group">
<label for="startDate">Начальная дата</label>
<input type="text" name="startDate" class="form-control startDate" id="startDate">
</div></div>
<div class="col-md-9"><div class="form-group">
<label for="nameMenu">Название для меню</label>
<input type="text" name="NameMenu" class="form-control startDate" id="NameMenu">
</div></div>
</div>
<div class="DateTime">
</div>
</form>
</section>
</div>
</div>
</div>
<div class="container navbar-fixed-bottom">
<div class="row detail">
<div class="col-md-offset-4 col-md-8">
<div style="overflow: hidden; padding-top: 20px; margin:auto -15px;">
<div class="Buttons">
<button type="submit" onclick="createElementField()" class="btn btn-success">Добавить
</button>
<button type="submit" onclick="saveTMPL(formTMPL)" style="float: right; margin-left: 10px;"
class="btn btn-danger">Сохранить
</button>
<button type="submit" onclick="applyTMPL(formTMPL)" style="float: right;"
class="btn btn-info">Применить
</button>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>-->
<script src="js/jquery-3.2.0.js"></script>
<script src="js/bootstrap.min.js"></script>
<!--<script src="js/jquery.maskkkk.js"></script>-->
<script src="js/jquery.maskedinput.js"></script>
<script src="js/functions.js"></script>
<!--<script src="js/moment.js"></script>
<script src="js/moment-with-locales.js"></script>-->
<script src="js/admin.js"></script>
</body>
</html>