student enrolment changes for SC : kdk
This commit is contained in:
parent
03e622048a
commit
69ff3c528f
@ -74,30 +74,32 @@
|
||||
<table class="table table-bordered table-responsive line-height-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Batch</th>
|
||||
<th>Form Id</th>
|
||||
<th>Student Name</th>
|
||||
<th>Father Name</th>
|
||||
<th>Mobile</th>
|
||||
<!--<th>Mobile</th>-->
|
||||
<th>Course/University</th>
|
||||
<th>Sem/Year</th>
|
||||
<th>Batch</th>
|
||||
<th>Status</th>
|
||||
<th>Comments</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let app of students">
|
||||
<td>{{app.batch}}</td>
|
||||
<td>{{app.formId}}</td>
|
||||
<td>{{app.studentName}}</td>
|
||||
<td>{{app.fatherName}}</td>
|
||||
<td>{{app.mobile}}</td>
|
||||
<td>{{app.course}} / {{app.univ}}</td>
|
||||
<!--<td>{{app.mobile}}</td>-->
|
||||
<td>{{app.course}} / {{app.univ}}</td>
|
||||
<td>{{app.sem}}</td>
|
||||
<td>{{app.batch}}</td>
|
||||
<td>
|
||||
<span *ngIf="app.status == 1" style="line-height: 0.1;">Active</span>
|
||||
<span *ngIf="app.status == 0" style="line-height: 0.1;">In-Active</span>
|
||||
<span *ngIf="app.status == 0" style="line-height: 0.1;">In-Active</span>
|
||||
</td>
|
||||
<td>{{app.comments}}</td>
|
||||
<td>
|
||||
<i class="fa fa-edit line-height-table" tooltip="Edit" (click)="editDocuments()"></i> |
|
||||
<i class="fa fa-edit fa-file-code-o" tooltip="Answer Booklet" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(app, 'answerBooklet')"></i> |
|
||||
@ -218,17 +220,6 @@
|
||||
<div class="card-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class=" form-group col-md-4">
|
||||
<label for="premanentAddress">Batch <span class="danger">*</span></label>
|
||||
<div class="input-prepend input-group">
|
||||
<select id="disabledSelect" class="form-control">
|
||||
<option value="0">Select Batch</option>
|
||||
<option value="1">Jan 2017</option>
|
||||
<option value="2">Jul 2017</option>
|
||||
<option value="3">Jan 2018</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class=" form-group col-md-4">
|
||||
<label for="premanentAddress"> University <span class="danger">*</span></label>
|
||||
<div class="input-prepend input-group">
|
||||
@ -251,6 +242,10 @@
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group col-md-4">
|
||||
<label for="specialisation">Specialisation<span class="danger"></span></label>
|
||||
<input type="text" class="form-control" id="specialisation" placeholder="Enter Specialisation">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4">
|
||||
@ -264,10 +259,42 @@
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class=" form-group col-md-4">
|
||||
<label for="premanentAddress">Session <span class="danger">*</span></label>
|
||||
<div class="input-prepend input-group">
|
||||
<select id="disabledSelect" class="form-control">
|
||||
<option value="0">Select Session</option>
|
||||
<option value="1">Jan 2017</option>
|
||||
<option value="2">Jul 2017</option>
|
||||
<option value="3">Jan 2018</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class=" form-group col-md-4">
|
||||
<label for="premanentAddress">Batch <span class="danger">*</span></label>
|
||||
<div class="input-prepend input-group">
|
||||
<select id="disabledSelect" class="form-control">
|
||||
<option value="0">Select Batch</option>
|
||||
<option value="1">Jan 2017</option>
|
||||
<option value="2">Jul 2017</option>
|
||||
<option value="3">Jan 2018</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4">
|
||||
<label for="doj">Joining Date <span class="danger">*</span></label>
|
||||
<input type="text" class="form-control" id="doj" placeholder="Enter DOJ">
|
||||
</div>
|
||||
<div class="form-group col-md-4">
|
||||
<label for="entrlmentNo">Enrolment Number<span class="danger"></span></label>
|
||||
<input type="text" class="form-control" id="entrlmentNo" placeholder="Enter Enrolment Number">
|
||||
</div>
|
||||
<div class="form-group col-md-4">
|
||||
<label for="rollNo">Roll Number<span class="danger"></span></label>
|
||||
<input type="text" class="form-control" id="rollNo" placeholder="Enter Roll Number">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -279,122 +306,146 @@
|
||||
</div>
|
||||
|
||||
</tab>
|
||||
<tab>
|
||||
<ng-template tabHeading>Re-registertion</ng-template>
|
||||
<div>
|
||||
<div class="card line-height">
|
||||
<div class="card-header">
|
||||
Re-registration
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-3">
|
||||
<label>Mobile Number</label>
|
||||
<div class="input-prepend input-group">
|
||||
<input id="search" class="form-control" type="text" placeholder="Mobile Number">
|
||||
<tab>
|
||||
<ng-template tabHeading>Re-registertion</ng-template>
|
||||
<div>
|
||||
<div class="card line-height">
|
||||
<div class="card-header">
|
||||
Re-registration
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class=" form-group col-md-3">
|
||||
<label>Form ID</label>
|
||||
<div class="input-prepend input-group">
|
||||
<input id="search" class="form-control" type="text" placeholder="Form ID">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group col-md-3">
|
||||
<label>Enrolment Number</label>
|
||||
<div class="input-prepend input-group">
|
||||
<input id="search" class="form-control" type="text" placeholder="Enrolment Number">
|
||||
</div>
|
||||
</div>
|
||||
<div class=" form-group col-md-3">
|
||||
<label>Student Name</label>
|
||||
<div class="input-prepend input-group">
|
||||
<input id="search" class="form-control" type="text" placeholder="Student Name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label></label>
|
||||
<div class="input-prepend input-group">
|
||||
<button type="button" value="Submit" class="btn btn-primary"> <i class="fa fa-search"></i> Search</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class=" form-group col-md-3">
|
||||
<label>Email</label>
|
||||
<div class="input-prepend input-group">
|
||||
<input id="search" class="form-control" type="text" placeholder="Email">
|
||||
</div>
|
||||
</div>
|
||||
<div class=" form-group col-md-3">
|
||||
<label>Father Name</label>
|
||||
<div class="input-prepend input-group">
|
||||
<input id="search" class="form-control" type="text" placeholder="Father Name">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label></label>
|
||||
<div class="input-prepend input-group">
|
||||
<button type="button" value="Submit" class="btn btn-primary"> <i class="fa fa-search"></i> Search</button>
|
||||
<div class="container">
|
||||
<div align="right">
|
||||
<button type="submit" class="btn btn-sm btn-success" (click)="myModal.show(); getModelWindowDetails(app)"> Add New Sem</button>
|
||||
<!--<button type="reset" class="btn btn-sm btn-danger"> Reset</button>-->
|
||||
</div>
|
||||
<table class="table table-bordered table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Batch</th>
|
||||
<th>Form Id</th>
|
||||
<th>Course</th>
|
||||
<th>University</th>
|
||||
<th>Sem/Year</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Jan 2018</td>
|
||||
<td>KES08432</td>
|
||||
<td>B.Com</td>
|
||||
<td>KR Univ</td>
|
||||
<td>3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jul 2017</td>
|
||||
<td>KES04321</td>
|
||||
<td>B.Com</td>
|
||||
<td>KR Univ</td>
|
||||
<td>2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Jan 2017</td>
|
||||
<td>KES00921</td>
|
||||
<td>B.Com</td>
|
||||
<td>KR Univ</td>
|
||||
<td>1</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div align="right">
|
||||
<button type="submit" class="btn btn-sm btn-success"> Add New Sem</button>
|
||||
<!--<button type="reset" class="btn btn-sm btn-danger"> Reset</button>-->
|
||||
</div>
|
||||
<table class="table table-bordered table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Form Id</th>
|
||||
<th>Batch</th>
|
||||
<th>Course</th>
|
||||
<th>University</th>
|
||||
<th>Sem/Year</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>KES08432</td>
|
||||
<td>Jan 2018</td>
|
||||
<td>B.Com</td>
|
||||
<td>KR Univ</td>
|
||||
<td>3</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>KES04321</td>
|
||||
<td>Jul 2017</td>
|
||||
<td>B.Com</td>
|
||||
<td>KR Univ</td>
|
||||
<td>2</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>KES00921</td>
|
||||
<td>Jan 2017</td>
|
||||
<td>B.Com</td>
|
||||
<td>KR Univ</td>
|
||||
<td>1</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</tab>
|
||||
</tab>
|
||||
</tabset>
|
||||
</div>
|
||||
|
||||
<div bsModal #myModal="bs-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
||||
<div class="modal-dialog modal-lg" role="document" *ngIf="myModalData">
|
||||
<div class="modal-dialog modal-lg" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h4 class="modal-title" *ngIf="modelType == 'markCard'"> Mark Card Status</h4>
|
||||
<h4 class="modal-title" *ngIf="modelType == 'answerBooklet'"> Answer Booklet Status</h4>
|
||||
<h4 class="modal-title">Re-registertion</h4>
|
||||
<button type="button" class="close" (click)="myModal.hide()" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="container">
|
||||
<table class="table table-bordered table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Status</th>
|
||||
<th>Comments</th>
|
||||
<th>Date</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Send to SC</td>
|
||||
<td><b>{{ modelType | uppercase }} </b>- Send to Studet Center</td>
|
||||
<td>4/05/2018</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<label><b> Student Name : </b> </label> XYZ
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label><b>Enrolment Number : </b> </label> UNIV120876
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<label><b> Course : </b> </label> B.Com
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label><b> University : </b> </label> KR Univ
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<label for="name"> Sem/Year <span class="danger">*</span></label>
|
||||
<select id="disabledSelect" class="form-control">
|
||||
<option value="0">Select Sem/Year</option>
|
||||
<option value="1">4</option>
|
||||
<option value="2">5</option>
|
||||
<option value="3">6</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label for="name">Session <span class="danger">*</span></label>
|
||||
<select id="disabledSelect" class="form-control">
|
||||
<option value="0">Select Session</option>
|
||||
<option value="1">Jul 2018 - Dec 2018</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label for="name">Batch <span class="danger">*</span></label>
|
||||
<select id="disabledSelect" class="form-control">
|
||||
<option value="0">Select Batch</option>
|
||||
<option value="1">Dec 2018</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary" (click)="myModal.hide()">Close</button>
|
||||
<!--<button type="button" class="btn btn-primary">Save</button>-->
|
||||
<button type="button" class="btn btn-primary">Save</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.modal-content -->
|
||||
|
||||
@ -25,7 +25,8 @@ export class StudentComponent implements OnInit {
|
||||
univ: 'KR university',
|
||||
sem: 2,
|
||||
batch: 'Jan 2018',
|
||||
status: '1'
|
||||
status: '1',
|
||||
comments: 'approved by Univ'
|
||||
},
|
||||
{
|
||||
formId: 'KAN00107',
|
||||
@ -36,7 +37,8 @@ export class StudentComponent implements OnInit {
|
||||
univ: 'KR university',
|
||||
sem: 4,
|
||||
batch: 'Jan 2018',
|
||||
status: '1'
|
||||
status: '1',
|
||||
comments: 'approved by Univ'
|
||||
},
|
||||
{
|
||||
formId: 'KAN00086',
|
||||
@ -47,7 +49,8 @@ export class StudentComponent implements OnInit {
|
||||
univ: 'KR university',
|
||||
sem: 8,
|
||||
batch: 'Jan 2018',
|
||||
status: '0'
|
||||
status: '0',
|
||||
comments: 'rejected by Univ'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user