-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathems404Gno.html
159 lines (134 loc) · 4.82 KB
/
ems404Gno.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Expires" content="0">
<title>学籍番号発行</title>
<link href="./css/bootstrapFlatly.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="./jquery/jquery-2.1.4.min.js"></script>
<script src="./jquery/jquery.validate.min.js"></script>
<script src="./jquery/jquery.tmpl.min.js"></script>
<script src="./jquery/bootstrap.min.js"></script>
<script src="./jquery/jquery.validate.bootstrap3.js"></script>
<script src="./jquery/jquery.blockUI.js"></script>
<script src="./jquery/autosize.min.js"></script>
<!-- bootstrap-datepicker
<link rel="stylesheet" href="./css/bootstrap-datepicker3.min.css" />
<script src="./jquery/bootstrap-datepicker.min.js"></script>
<script src="./jquery/bootstrap-datepicker.ja.min.js"></script>
-->
<!-- Data Tables -->
<link rel="stylesheet" href="./css/jquery.dataTables.min.css" />
<script src="./jquery/jquery.dataTables.min.js"></script>
<!-- Data Tables(Fixed Header) -->
<link rel="stylesheet" href="./css/fixedHeader.bootstrap.min.css" />
<script src="./jquery/dataTables.fixedHeader.min.js"></script>
<link rel="stylesheet" href="./css/custom.css" />
<script src="./js/settingcode.js?ver=20170323-1"></script>
<script src="./js/commoncode.js?ver=20170323-1"></script>
<script src="./js/cmnlogin.js?ver=20170323-1"></script>
<script src="./js/menuitem.js?ver=20170323-1"></script>
<script src="./js/cd.js?ver=20170323-1"></script>
<script src="./js/stepchk.js?ver=20170323-1"></script>
<script src="./js/cmncontrol.js?ver=20170323-1"></script>
<script src="./js/ems404/ems404valid.js?ver=20170323-1"></script>
<script src="./js/ems404/ems404viewmodel.js?ver=20170323-1"></script>
<script src="./js/ems404/ems404control.js?ver=20170323-1"></script>
</head>
<body>
<div id="page01">
<div class="container">
<div class="row">
<div id="menuParts">
<!--MENU-->
</div>
<!-- ################ 入力画面 ################ -->
<form class="form-horizontal" id="page01form1">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">
<a data-toggle="collapse" href="#searchAccCollapse">
検索条件
</a>
</h3>
</div>
<div id="searchAccCollapse" class="panel-collapse collapse in">
<div class="panel-body">
<fieldset class="cs-search">
<div class="form-group">
<label class="col-sm-1 control-label" for="gakka_cd">学科</label>
<div class="col-sm-5">
<div id="gakka_Tmpl"></div>
<!-- jQuery Template -->
<script id="gakka_Script" type="text/x-jquery-tmpl">
<select class="form-control" name="gakka_cd" id="gakka_cd">
<option value="" >指定なし</option>
{{each rows}}
<option value=${cd} > ${name} </option>
{{/each}}
</select>
</script>
<!-- jQuery Template -->
</div>
<div class="col-sm-2">
<button type="submit" class="btn btn-primary" id="page01Search">対象検索</button>
</div>
</div>
</fieldset>
</div> <!--panel-body-->
</div> <!--panel collapse-->
</div> <!--panel-->
</form>
<form class="form-horizontal" id="page01form2">
<div id="table_Tmpl"></div>
<!-- jQuery Template -->
<script id="table_Script" type="text/x-jquery-tmpl">
<table class="table table-striped" id="page01Table">
<thead>
<tr class="active">
<th>学籍番号</th>
<th>氏名</th>
<th>カナ</th>
<th>生年月日</th>
<th>受験番号</th>
</tr>
</thead>
<tbody>
{{each rows}}
<tr>
<td> ${gakuseki_no}</td>
<td> ${kanji_simei} </td>
<td> ${kana_simei} </td>
<td> ${birthday}</td>
<td> ${juken_no}</td>
</tr>
{{/each}}
</tbody>
</table>
<div class="form-group">
<div class="col-xs-3">
<button type="submit" class="btn btn-primary center-block" id="page01Commit">学籍番号発行</button>
</div>
<div class="col-xs-3">
<button type="button" class="btn btn-default center-block" id="page01Cancel">検索条件再指定</button>
</div>
</div>
<!-- jQuery Template -->
</script>
</form>
</div> <!--row-->
</div> <!--container-->
</div> <!--page-->
<div id="dialogParts">
<!--DIALOG-->
</div>
</body>
</html>