student details session changes
This commit is contained in:
parent
dfd6459abc
commit
5ea80400ab
@ -662,7 +662,7 @@
|
|||||||
<div class="col-md-4 form-group" ng-class="{'has-error':Form.batch.$dirty && Form.batch.$invalid, 'has-success':Form.batch.$valid}">
|
<div class="col-md-4 form-group" ng-class="{'has-error':Form.batch.$dirty && Form.batch.$invalid, 'has-success':Form.batch.$valid}">
|
||||||
|
|
||||||
<label>
|
<label>
|
||||||
Batch <span class="symbol required"></span>
|
Session <span class="symbol required"></span>
|
||||||
</label>
|
</label>
|
||||||
<div ng-if="courseLoading == true">
|
<div ng-if="courseLoading == true">
|
||||||
<span style="padding: auto 0; color: #007AFF; font-weight: bold;">fetching...</span>
|
<span style="padding: auto 0; color: #007AFF; font-weight: bold;">fetching...</span>
|
||||||
@ -670,8 +670,8 @@
|
|||||||
<div ng-if="courseLoading == false">
|
<div ng-if="courseLoading == false">
|
||||||
<select class="form-control" tabindex="26" name="batch" ng-model="myModelCourseAdd.batch" class="cs-select cs-skin-elastic"
|
<select class="form-control" tabindex="26" name="batch" ng-model="myModelCourseAdd.batch" class="cs-select cs-skin-elastic"
|
||||||
required>
|
required>
|
||||||
<option value="" disabled selected>Select Batch</option>
|
<option value="" disabled selected>Select Session</option>
|
||||||
<option ng-repeat="item in batchDataAdd" value="{{item.BatchCode}}">{{item.BatchName}}</option>
|
<option ng-repeat="item in batchDataAdd" value="{{item.SessionID}}">{{item.SessionName}}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<span class="error text-small block" ng-if="Form.batch.$dirty && Form.batch.$error.required">Batch is required</span>
|
<span class="error text-small block" ng-if="Form.batch.$dirty && Form.batch.$error.required">Batch is required</span>
|
||||||
@ -1153,7 +1153,7 @@
|
|||||||
</th>
|
</th>
|
||||||
<th>Specilization 2
|
<th>Specilization 2
|
||||||
</th>-->
|
</th>-->
|
||||||
<th>Batch
|
<th>Session
|
||||||
</th>
|
</th>
|
||||||
<th>Date of Joining
|
<th>Date of Joining
|
||||||
</th>
|
</th>
|
||||||
@ -1169,7 +1169,7 @@
|
|||||||
<td>{{s.CourseName}}</td>
|
<td>{{s.CourseName}}</td>
|
||||||
<!--<td>{{s.Specilization1}}</td>
|
<!--<td>{{s.Specilization1}}</td>
|
||||||
<td>{{s.Specilization2}}</td>-->
|
<td>{{s.Specilization2}}</td>-->
|
||||||
<td>{{s.BatchName}}</td>
|
<td>{{s.SessionName}}</td>
|
||||||
<td>{{s.DOJ}}</td>
|
<td>{{s.DOJ}}</td>
|
||||||
<td><span ng-if="s.IsActive == 1">Active</span>
|
<td><span ng-if="s.IsActive == 1">Active</span>
|
||||||
<span ng-if="s.IsActive == 0">In-Active</span></td>
|
<span ng-if="s.IsActive == 0">In-Active</span></td>
|
||||||
@ -1232,7 +1232,7 @@
|
|||||||
<div class="col-md-4 form-group" ng-class="{'has-error':addCourseExistingStudentFORM.batch.$dirty && addCourseExistingStudentFORM.batch.$invalid, 'has-success':addCourseExistingStudentFORM.batch.$valid}">
|
<div class="col-md-4 form-group" ng-class="{'has-error':addCourseExistingStudentFORM.batch.$dirty && addCourseExistingStudentFORM.batch.$invalid, 'has-success':addCourseExistingStudentFORM.batch.$valid}">
|
||||||
|
|
||||||
<label>
|
<label>
|
||||||
Batch <span class="symbol required"></span>
|
Session <span class="symbol required"></span>
|
||||||
</label>
|
</label>
|
||||||
<div ng-if="courseLoading == true">
|
<div ng-if="courseLoading == true">
|
||||||
<span style="padding: auto 0; color: #007AFF; font-weight: bold;">fetching...</span>
|
<span style="padding: auto 0; color: #007AFF; font-weight: bold;">fetching...</span>
|
||||||
@ -1240,8 +1240,8 @@
|
|||||||
<div ng-if="courseLoading == false">
|
<div ng-if="courseLoading == false">
|
||||||
<select class="form-control" tabindex="26" name="batch" ng-model="myModelCourse.batch" class="cs-select cs-skin-elastic"
|
<select class="form-control" tabindex="26" name="batch" ng-model="myModelCourse.batch" class="cs-select cs-skin-elastic"
|
||||||
required>
|
required>
|
||||||
<option value="" disabled selected>Select Batch</option>
|
<option value="" disabled selected>Select Session</option>
|
||||||
<option ng-repeat="item in batchData" value="{{item.BatchCode}}">{{item.BatchName}}</option>
|
<option ng-repeat="item in batchData" value="{{item.SessionID}}">{{item.SessionName}}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<span class="error text-small block" ng-if="addCourseExistingStudentFORM.batch.$dirty && addCourseExistingStudentFORM.batch.$error.required">Batch is required</span>
|
<span class="error text-small block" ng-if="addCourseExistingStudentFORM.batch.$dirty && addCourseExistingStudentFORM.batch.$error.required">Batch is required</span>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user