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">
|
<table class="table table-bordered table-responsive line-height-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>Batch</th>
|
||||||
<th>Form Id</th>
|
<th>Form Id</th>
|
||||||
<th>Student Name</th>
|
<th>Student Name</th>
|
||||||
<th>Father Name</th>
|
<th>Father Name</th>
|
||||||
<th>Mobile</th>
|
<!--<th>Mobile</th>-->
|
||||||
<th>Course/University</th>
|
<th>Course/University</th>
|
||||||
<th>Sem/Year</th>
|
<th>Sem/Year</th>
|
||||||
<th>Batch</th>
|
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
|
<th>Comments</th>
|
||||||
<th>Action</th>
|
<th>Action</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let app of students">
|
<tr *ngFor="let app of students">
|
||||||
|
<td>{{app.batch}}</td>
|
||||||
<td>{{app.formId}}</td>
|
<td>{{app.formId}}</td>
|
||||||
<td>{{app.studentName}}</td>
|
<td>{{app.studentName}}</td>
|
||||||
<td>{{app.fatherName}}</td>
|
<td>{{app.fatherName}}</td>
|
||||||
<td>{{app.mobile}}</td>
|
<!--<td>{{app.mobile}}</td>-->
|
||||||
<td>{{app.course}} / {{app.univ}}</td>
|
<td>{{app.course}} / {{app.univ}}</td>
|
||||||
<td>{{app.sem}}</td>
|
<td>{{app.sem}}</td>
|
||||||
<td>{{app.batch}}</td>
|
|
||||||
<td>
|
<td>
|
||||||
<span *ngIf="app.status == 1" style="line-height: 0.1;">Active</span>
|
<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>
|
||||||
|
<td>{{app.comments}}</td>
|
||||||
<td>
|
<td>
|
||||||
<i class="fa fa-edit line-height-table" tooltip="Edit" (click)="editDocuments()"></i> |
|
<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> |
|
<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="card-body">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<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">
|
<div class=" form-group col-md-4">
|
||||||
<label for="premanentAddress"> University <span class="danger">*</span></label>
|
<label for="premanentAddress"> University <span class="danger">*</span></label>
|
||||||
<div class="input-prepend input-group">
|
<div class="input-prepend input-group">
|
||||||
@ -251,6 +242,10 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</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>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="form-group col-md-4">
|
<div class="form-group col-md-4">
|
||||||
@ -264,10 +259,42 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</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">
|
<div class="form-group col-md-4">
|
||||||
<label for="doj">Joining Date <span class="danger">*</span></label>
|
<label for="doj">Joining Date <span class="danger">*</span></label>
|
||||||
<input type="text" class="form-control" id="doj" placeholder="Enter DOJ">
|
<input type="text" class="form-control" id="doj" placeholder="Enter DOJ">
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -289,22 +316,22 @@
|
|||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<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">
|
<div class="form-group col-md-3">
|
||||||
<label>Mobile Number</label>
|
<label>Enrolment Number</label>
|
||||||
<div class="input-prepend input-group">
|
<div class="input-prepend input-group">
|
||||||
<input id="search" class="form-control" type="text" placeholder="Mobile Number">
|
<input id="search" class="form-control" type="text" placeholder="Enrolment Number">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class=" form-group col-md-3">
|
<div class=" form-group col-md-3">
|
||||||
<label>Email</label>
|
<label>Student Name</label>
|
||||||
<div class="input-prepend input-group">
|
<div class="input-prepend input-group">
|
||||||
<input id="search" class="form-control" type="text" placeholder="Email">
|
<input id="search" class="form-control" type="text" placeholder="Student Name">
|
||||||
</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>
|
</div>
|
||||||
<div class="col-md-2">
|
<div class="col-md-2">
|
||||||
@ -317,14 +344,14 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div align="right">
|
<div align="right">
|
||||||
<button type="submit" class="btn btn-sm btn-success"> Add New Sem</button>
|
<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>-->
|
<!--<button type="reset" class="btn btn-sm btn-danger"> Reset</button>-->
|
||||||
</div>
|
</div>
|
||||||
<table class="table table-bordered table-responsive">
|
<table class="table table-bordered table-responsive">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Form Id</th>
|
|
||||||
<th>Batch</th>
|
<th>Batch</th>
|
||||||
|
<th>Form Id</th>
|
||||||
<th>Course</th>
|
<th>Course</th>
|
||||||
<th>University</th>
|
<th>University</th>
|
||||||
<th>Sem/Year</th>
|
<th>Sem/Year</th>
|
||||||
@ -332,22 +359,22 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>KES08432</td>
|
|
||||||
<td>Jan 2018</td>
|
<td>Jan 2018</td>
|
||||||
|
<td>KES08432</td>
|
||||||
<td>B.Com</td>
|
<td>B.Com</td>
|
||||||
<td>KR Univ</td>
|
<td>KR Univ</td>
|
||||||
<td>3</td>
|
<td>3</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>KES04321</td>
|
|
||||||
<td>Jul 2017</td>
|
<td>Jul 2017</td>
|
||||||
|
<td>KES04321</td>
|
||||||
<td>B.Com</td>
|
<td>B.Com</td>
|
||||||
<td>KR Univ</td>
|
<td>KR Univ</td>
|
||||||
<td>2</td>
|
<td>2</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>KES00921</td>
|
|
||||||
<td>Jan 2017</td>
|
<td>Jan 2017</td>
|
||||||
|
<td>KES00921</td>
|
||||||
<td>B.Com</td>
|
<td>B.Com</td>
|
||||||
<td>KR Univ</td>
|
<td>KR Univ</td>
|
||||||
<td>1</td>
|
<td>1</td>
|
||||||
@ -363,38 +390,62 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div bsModal #myModal="bs-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
|
<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-content">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<h4 class="modal-title" *ngIf="modelType == 'markCard'"> Mark Card Status</h4>
|
<h4 class="modal-title">Re-registertion</h4>
|
||||||
<h4 class="modal-title" *ngIf="modelType == 'answerBooklet'"> Answer Booklet Status</h4>
|
|
||||||
<button type="button" class="close" (click)="myModal.hide()" aria-label="Close">
|
<button type="button" class="close" (click)="myModal.hide()" aria-label="Close">
|
||||||
<span aria-hidden="true">×</span>
|
<span aria-hidden="true">×</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<table class="table table-bordered table-responsive">
|
<div class="row">
|
||||||
<thead>
|
<div class="col-md-6">
|
||||||
<tr>
|
<label><b> Student Name : </b> </label> XYZ
|
||||||
<th>Status</th>
|
</div>
|
||||||
<th>Comments</th>
|
<div class="col-md-6">
|
||||||
<th>Date</th>
|
<label><b>Enrolment Number : </b> </label> UNIV120876
|
||||||
</tr>
|
</div>
|
||||||
</thead>
|
</div>
|
||||||
<tbody>
|
<div class="row">
|
||||||
<tr>
|
<div class="col-md-6">
|
||||||
<td>Send to SC</td>
|
<label><b> Course : </b> </label> B.Com
|
||||||
<td><b>{{ modelType | uppercase }} </b>- Send to Studet Center</td>
|
</div>
|
||||||
<td>4/05/2018</td>
|
<div class="col-md-6">
|
||||||
</tr>
|
<label><b> University : </b> </label> KR Univ
|
||||||
</tbody>
|
</div>
|
||||||
</table>
|
</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>
|
</div>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-secondary" (click)="myModal.hide()">Close</button>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.modal-content -->
|
<!-- /.modal-content -->
|
||||||
|
|||||||
@ -25,7 +25,8 @@ export class StudentComponent implements OnInit {
|
|||||||
univ: 'KR university',
|
univ: 'KR university',
|
||||||
sem: 2,
|
sem: 2,
|
||||||
batch: 'Jan 2018',
|
batch: 'Jan 2018',
|
||||||
status: '1'
|
status: '1',
|
||||||
|
comments: 'approved by Univ'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
formId: 'KAN00107',
|
formId: 'KAN00107',
|
||||||
@ -36,7 +37,8 @@ export class StudentComponent implements OnInit {
|
|||||||
univ: 'KR university',
|
univ: 'KR university',
|
||||||
sem: 4,
|
sem: 4,
|
||||||
batch: 'Jan 2018',
|
batch: 'Jan 2018',
|
||||||
status: '1'
|
status: '1',
|
||||||
|
comments: 'approved by Univ'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
formId: 'KAN00086',
|
formId: 'KAN00086',
|
||||||
@ -47,7 +49,8 @@ export class StudentComponent implements OnInit {
|
|||||||
univ: 'KR university',
|
univ: 'KR university',
|
||||||
sem: 8,
|
sem: 8,
|
||||||
batch: 'Jan 2018',
|
batch: 'Jan 2018',
|
||||||
status: '0'
|
status: '0',
|
||||||
|
comments: 'rejected by Univ'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user