136 lines
4.1 KiB
HTML
136 lines
4.1 KiB
HTML
<style>
|
|
b.fa {
|
|
display: inline-block;
|
|
border-radius: 60px;
|
|
box-shadow: 0px 0px 2px #FF6600;
|
|
padding: 0.5em 0.6em;
|
|
|
|
|
|
}
|
|
b.fa1 {
|
|
display: inline-block;
|
|
border-radius: 60px;
|
|
box-shadow: 0px 0px 2px green;
|
|
padding: 0.5em 0.6em;
|
|
|
|
|
|
}
|
|
a {
|
|
color: #007AFF;
|
|
}
|
|
|
|
</style>
|
|
<!-- start: PAGE TITLE -->
|
|
<section id="page-title">
|
|
<div class="row">
|
|
<div class="col-sm-8">
|
|
|
|
<h1 >
|
|
|
|
<span>Student Mapping </span></h1>
|
|
|
|
</div>
|
|
<!-- <div ncy-breadcrumb></div>-->
|
|
</div>
|
|
</section>
|
|
<!-- end: PAGE TITLE -->
|
|
<!-- start: LIST GROUP -->
|
|
|
|
<div class="container-fluid container-fullw bg-white" ng-controller="generateHallTicketCtrl" data-ng-init="init()">
|
|
|
|
|
|
<div class="row">
|
|
<form name="Form" id="form" novalidate method="post">
|
|
<fieldset>
|
|
<legend>Search</legend>
|
|
<div class="col-md-12 ">
|
|
|
|
<div class="col-md-3 form-group">
|
|
<label>
|
|
University
|
|
</label>
|
|
<select class="form-control" name="university" tabindex="1" id="university"
|
|
ng-model="myModel.universityName"
|
|
ng-options="i.universityName for i in university" ng-change="">
|
|
<option value=""> Select University</option>
|
|
</select>
|
|
<!-- <pre>{{myModel.universityName | json}}</pre>-->
|
|
|
|
</div>
|
|
<div class="col-md-2 form-group">
|
|
|
|
<label>
|
|
Batch Name
|
|
</label>
|
|
<select ui-select2 class="form-control" name="batch" tabindex="4" id="batch"
|
|
ng-model="myModel.batchName" ng-change="captureBatchName()"
|
|
>
|
|
<option value=""> Select Batch</option>
|
|
<option ng-repeat="batchDetails in myModel.universityName.batchDetails" value="{{batchDetails.BatchCode}}"><span ng-show="batchDetails.BatchCode != ''"><strong>{{batchDetails.BatchName}}</strong></span></option>
|
|
</select>
|
|
<!-- <pre>{{myModel.batchName | json}}</pre> -->
|
|
</div>
|
|
<div class="col-md-3 form-group">
|
|
<label>
|
|
Course
|
|
</label>
|
|
<select ui-select2 class="form-control" name="course" tabindex="4" id="course"
|
|
ng-model="myModel.courseName" ng-change="captureCourseName();">
|
|
<option value=""> Select Course</option>
|
|
<option ng-repeat="courseDetails in myModel.universityName.courseDetails" value="{{courseDetails.CourseID}}"><span ng-show="courseDetails.CourseCode != ''"><strong>{{courseDetails.CourseName}}</strong></span></option>
|
|
</select>
|
|
|
|
<!-- <pre>{{myModel.courseName|json}}</pre> -->
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
<div class="col-md-12 ">
|
|
|
|
<div class="col-md-3 form-group">
|
|
|
|
<label>
|
|
Center Name
|
|
</label>
|
|
<select class="form-control" name="center" tabindex="4" id="center"
|
|
ng-model="myModel.centerName"
|
|
ng-options="centerDetails.CenterName for centerDetails in centers" ng-change="">
|
|
<option value=""> Center Name</option>
|
|
</select>
|
|
<!-- <pre>{{myModel.centerName | json}}</pre> -->
|
|
</div>
|
|
|
|
<div class="col-md-2 form-group">
|
|
|
|
<br>
|
|
<button type="button" ladda="ldloading1.zoom_in" tabindex="5" class="btn btn-wide btn-info" data-style="zoom-in" ng-click="StudentDetails(Form,myModel);">GET STUDENTS</button>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- end: LIST GROUP -->
|
|
|
|
|
|
|
|
|
|
|