student enrolment changes : kdk
This commit is contained in:
parent
27177575ce
commit
9c9fab8e8e
@ -89,30 +89,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-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(app)"></i>-->
|
<!--<i class="fa fa-eye" tooltip="View More" data-toggle="modal" (click)="myModal.show(); getModelWindowDetails(app)"></i>-->
|
||||||
@ -232,17 +234,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">
|
||||||
@ -265,6 +256,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">
|
||||||
@ -278,10 +273,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>
|
||||||
@ -303,22 +330,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">
|
||||||
@ -331,14 +358,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>
|
||||||
@ -346,22 +373,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>
|
||||||
@ -379,10 +406,10 @@
|
|||||||
</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">{{ myModalData.applicationId }}</h4>
|
<h4 class="modal-title">Re-registertion</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>
|
||||||
@ -391,31 +418,43 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<label><b> Student Name : </b> </label> {{myModalData.studentName}}
|
<label><b> Student Name : </b> </label> XYZ
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<label><b>Course Name : </b> </label> {{myModalData.courseName}}
|
<label><b>Enrolment Number : </b> </label> UNIV120876
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<label><b> Sem/Year : </b> </label> {{myModalData.sem}}
|
<label><b> Course : </b> </label> B.Com
|
||||||
|
</div>
|
||||||
|
<div class="col-md-6">
|
||||||
|
<label><b> University : </b> </label> KR Univ
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<label for="name"> Status</label>
|
<label for="name"> Sem/Year <span class="danger">*</span></label>
|
||||||
<select id="disabledSelect" class="form-control">
|
<select id="disabledSelect" class="form-control">
|
||||||
<option value="0">Select Status</option>
|
<option value="0">Select Sem/Year</option>
|
||||||
<option value="1">Approved</option>
|
<option value="1">4</option>
|
||||||
<option value="2">Rejected</option>
|
<option value="2">5</option>
|
||||||
<option value="3">Canceled</option>
|
<option value="3">6</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4">
|
<div class="col-md-4">
|
||||||
<label for="comment">Comments <span class="danger">*</span></label>
|
<label for="name">Session <span class="danger">*</span></label>
|
||||||
<textarea class="form-control" id="comments" placeholder="Enter Comments"></textarea>
|
<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>
|
||||||
|
|||||||
@ -24,7 +24,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',
|
||||||
@ -35,7 +36,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',
|
||||||
@ -46,7 +48,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'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@ -77,6 +77,10 @@
|
|||||||
<!--<legend>Study Center Details</legend>-->
|
<!--<legend>Study Center Details</legend>-->
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
<div class="form-group col-md-4">
|
||||||
|
<label for="scCode"> Study Center Code <span class="danger">*</span></label>
|
||||||
|
<input type="text" class="form-control" id="scCode" placeholder="Enter Study Center Code">
|
||||||
|
</div>
|
||||||
<div class="form-group col-md-4">
|
<div class="form-group col-md-4">
|
||||||
<label for="name"> Name <span class="danger">*</span></label>
|
<label for="name"> Name <span class="danger">*</span></label>
|
||||||
<input type="text" class="form-control" id="name" placeholder="Enter Name">
|
<input type="text" class="form-control" id="name" placeholder="Enter Name">
|
||||||
@ -85,12 +89,12 @@
|
|||||||
<label for="pNumber">Phone Number<span class="danger">*</span></label>
|
<label for="pNumber">Phone Number<span class="danger">*</span></label>
|
||||||
<input type="text" class="form-control" id="pNumber" placeholder="Enter Phone Number">
|
<input type="text" class="form-control" id="pNumber" placeholder="Enter Phone Number">
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
<div class="form-group col-md-4">
|
<div class="form-group col-md-4">
|
||||||
<label for="pNumber">Email<span class="danger">*</span></label>
|
<label for="pNumber">Email<span class="danger">*</span></label>
|
||||||
<input type="text" class="form-control" id="email" placeholder="Enter Email">
|
<input type="text" class="form-control" id="email" placeholder="Enter Email">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="form-group col-md-4">
|
<div class="form-group col-md-4">
|
||||||
<label for="city">City<span class="danger">*</span></label>
|
<label for="city">City<span class="danger">*</span></label>
|
||||||
<input type="text" class="form-control" id="city" placeholder="Enter City">
|
<input type="text" class="form-control" id="city" placeholder="Enter City">
|
||||||
@ -99,12 +103,12 @@
|
|||||||
<label for="state">State<span class="danger">*</span></label>
|
<label for="state">State<span class="danger">*</span></label>
|
||||||
<input type="text" class="form-control" id="state" placeholder="Enter State">
|
<input type="text" class="form-control" id="state" placeholder="Enter State">
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row">
|
||||||
<div class="form-group col-md-4">
|
<div class="form-group col-md-4">
|
||||||
<label for="pincode">Pin Code<span class="danger">*</span></label>
|
<label for="pincode">Pin Code<span class="danger">*</span></label>
|
||||||
<input type="text" class="form-control" id="pincode" placeholder="Enter PinCode">
|
<input type="text" class="form-control" id="pincode" placeholder="Enter PinCode">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="row">
|
|
||||||
<div class="form-group col-md-4">
|
<div class="form-group col-md-4">
|
||||||
<label for="premanentAddress">Full Contact Address <span class="danger">*</span></label>
|
<label for="premanentAddress">Full Contact Address <span class="danger">*</span></label>
|
||||||
<textarea class="form-control" id="premanentAddress" placeholder="Enter Full Contact Address"></textarea>
|
<textarea class="form-control" id="premanentAddress" placeholder="Enter Full Contact Address"></textarea>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user