fees calculator share allotment changes
This commit is contained in:
parent
865aea655b
commit
5a13e5cbab
@ -9,7 +9,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="form-group col-sm-3">
|
<div class="form-group col-sm-4">
|
||||||
<label for="university">University <span class="symbol required"></span></label>
|
<label for="university">University <span class="symbol required"></span></label>
|
||||||
<select class="form-control" id="university">
|
<select class="form-control" id="university">
|
||||||
<!-- <option>Select University</option> -->
|
<!-- <option>Select University</option> -->
|
||||||
@ -19,7 +19,7 @@
|
|||||||
<option>Hindustan University</option>
|
<option>Hindustan University</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group col-sm-3">
|
<div class="form-group col-sm-4">
|
||||||
<label for="course">Course <span class="symbol required"></span></label>
|
<label for="course">Course <span class="symbol required"></span></label>
|
||||||
<select class="form-control" id="course">
|
<select class="form-control" id="course">
|
||||||
<!-- <option>Select Course</option> -->
|
<!-- <option>Select Course</option> -->
|
||||||
@ -29,7 +29,7 @@
|
|||||||
<option>MP0200-Mechanical Engg</option>
|
<option>MP0200-Mechanical Engg</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group col-sm-3 ">
|
<div class="form-group col-sm-4">
|
||||||
<label for="semyear">Sem/Year <span class="symbol required"></span></label>
|
<label for="semyear">Sem/Year <span class="symbol required"></span></label>
|
||||||
<select class="form-control" id="semyear">
|
<select class="form-control" id="semyear">
|
||||||
<!-- <option>Select Sem/Year</option> -->
|
<!-- <option>Select Sem/Year</option> -->
|
||||||
@ -43,12 +43,12 @@
|
|||||||
<option>SEM8</option>
|
<option>SEM8</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group col-sm-3">
|
<div class="form-group col-sm-4">
|
||||||
<label for="new">No Of New Applicants <span class="symbol required"></span></label>
|
<label for="new">No of New Applicants <span class="symbol required"></span></label>
|
||||||
<input type="text" class="form-control" value="10" id="new" placeholder="Enter new applicants">
|
<input type="text" class="form-control" value="10" id="new" placeholder="Enter new applicants">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group col-sm-3">
|
<div class="form-group col-sm-4">
|
||||||
<label for="old">No Of Re-registered Applicants <span class="symbol required"></span></label>
|
<label for="old">No of Re-registered Applicants <span class="symbol required"></span></label>
|
||||||
<input type="text" value="20" class="form-control" id="old" placeholder="Enter registerd applicants">
|
<input type="text" value="20" class="form-control" id="old" placeholder="Enter registerd applicants">
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group col-sm-3 serachBtn">
|
<div class="form-group col-sm-3 serachBtn">
|
||||||
@ -64,7 +64,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<th>Fees Type</th>
|
<th>Fees Type</th>
|
||||||
<th>Fees Amount * No of New Applicant</th>
|
<th>Fees Amount * No of New Applicant</th>
|
||||||
<th>Fees Amount * No of Re-registerd Applicant</th>
|
<th>Fees Amount * No of Re-registered Applicant</th>
|
||||||
<th>Total</th>
|
<th>Total</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|||||||
@ -6,7 +6,7 @@ const routes: Routes = [
|
|||||||
path: '',
|
path: '',
|
||||||
component: FeesShareAllotmentComponent,
|
component: FeesShareAllotmentComponent,
|
||||||
data: {
|
data: {
|
||||||
title: "Share Allocate"
|
title: "Fees Share"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-header">
|
<div class="card-header">
|
||||||
<i class="fa fa-align-justify"></i> View Share Allocate Details
|
<i class="fa fa-align-justify"></i> View Fees Share Details
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@ -44,7 +44,6 @@
|
|||||||
<table class="table table-bordered table-responsive table-hover">
|
<table class="table table-bordered table-responsive table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Study Center</th>
|
|
||||||
<th>University</th>
|
<th>University</th>
|
||||||
<th>Course</th>
|
<th>Course</th>
|
||||||
<th>Percentage</th>
|
<th>Percentage</th>
|
||||||
@ -52,7 +51,6 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Chennai</td>
|
|
||||||
<td>Anna University</td>
|
<td>Anna University</td>
|
||||||
<td>Information Technology</td>
|
<td>Information Technology</td>
|
||||||
|
|
||||||
@ -61,7 +59,6 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Chennai</td>
|
|
||||||
<td>SRM University</td>
|
<td>SRM University</td>
|
||||||
<td>Fashion Technology</td>
|
<td>Fashion Technology</td>
|
||||||
|
|
||||||
@ -70,7 +67,6 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Chennai</td>
|
|
||||||
<td>Karpagam University</td>
|
<td>Karpagam University</td>
|
||||||
<td>Computer Science And Engg</td>
|
<td>Computer Science And Engg</td>
|
||||||
|
|
||||||
@ -79,7 +75,6 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Chennai</td>
|
|
||||||
<td>Anna University</td>
|
<td>Anna University</td>
|
||||||
<td>Fashion Technology</td>
|
<td>Fashion Technology</td>
|
||||||
|
|
||||||
@ -88,7 +83,6 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Chennai</td>
|
|
||||||
<td>Hindustan University</td>
|
<td>Hindustan University</td>
|
||||||
<td >Mechanical Engg</td>
|
<td >Mechanical Engg</td>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user