latest change for apollosc
This commit is contained in:
parent
26a6344f38
commit
044ca9a858
@ -51,7 +51,7 @@ export class AppSidebar {
|
||||
url: '/masters/studyCenter',
|
||||
icon: 'fa fa-language'
|
||||
},{
|
||||
name: 'Form List',
|
||||
name: 'Documents',
|
||||
url: '/masters/formList',
|
||||
icon: 'fa fa-language'
|
||||
},
|
||||
@ -125,17 +125,17 @@ export class AppSidebar {
|
||||
icon: 'fa fa-book',
|
||||
children: [
|
||||
{
|
||||
name: 'ReceivedMaterial',
|
||||
name: 'Received Material',
|
||||
url: '/studymaterial/receivedmaterial',
|
||||
icon: 'fa fa-file-text-o'
|
||||
},
|
||||
{
|
||||
name: 'AllocateMaterial',
|
||||
name: 'Allocate Material',
|
||||
url: '/studymaterial/allocatematerial',
|
||||
icon: 'fa fa-user-secret'
|
||||
},
|
||||
{
|
||||
name: 'Studymaterial Stock',
|
||||
name: 'Study Material Stock',
|
||||
url: '/studymaterial/studymaterialstock',
|
||||
icon: 'fa fa-user-secret'
|
||||
}
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
<div class="col-lg-12" *ngIf="!show">
|
||||
<tabset>
|
||||
<tab>
|
||||
<ng-template tabHeading> Form List</ng-template>
|
||||
<ng-template tabHeading> Documents List</ng-template>
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<i class="fa fa-align-justify"></i> Form List
|
||||
<i class="fa fa-align-justify"></i> Documents List
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="row">
|
||||
@ -21,8 +21,8 @@
|
||||
<table class="table table-bordered table-responsive">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Form Name</th>
|
||||
<th>Form Type</th>
|
||||
<th>Documents Name</th>
|
||||
<th>Documents Type</th>
|
||||
<th>Course / University</th>
|
||||
<th>Description</th>
|
||||
<th>Status</th>
|
||||
@ -60,21 +60,21 @@
|
||||
</div>
|
||||
</tab>
|
||||
<tab>
|
||||
<ng-template tabHeading> Add Form</ng-template>
|
||||
<ng-template tabHeading> Add Document</ng-template>
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<i class="fa fa-align-justify"></i> Form Details
|
||||
<i class="fa fa-align-justify"></i> Documents Details
|
||||
</div>
|
||||
<fieldset>
|
||||
<!--<legend>Role Details</legend>-->
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="form-group col-md-4">
|
||||
<label for="formName">Form Name<span class="danger">*</span></label>
|
||||
<label for="formName">Document Name<span class="danger">*</span></label>
|
||||
<input type="text" class="form-control" id="formName" placeholder="Enter Form Name">
|
||||
</div>
|
||||
<div class="form-group col-md-4">
|
||||
<label for="formType">Form Type <span class="danger">*</span></label>
|
||||
<label for="formType">Document Type <span class="danger">*</span></label>
|
||||
<select class="form-control" id="formType" placeholder="Select Form Type">
|
||||
<option disabled>Select Form Type</option>
|
||||
<option>Admission Form</option>
|
||||
|
||||
@ -155,7 +155,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div id="dvPassport" style="display: block">
|
||||
<div id="dvPassport" style="display: none">
|
||||
<label for="dvPassport">Vendor Details<span class="required"> *</span></label>
|
||||
<input type="text" class="form-control" id="vendordetails" placeholder="Vendor Details">
|
||||
</div>
|
||||
|
||||
@ -15,7 +15,7 @@ export class ReceivedmaterialComponent implements OnInit {
|
||||
ShowHideDiv(chkPassport) {
|
||||
|
||||
var dvPassport = document.getElementById("dvPassport");
|
||||
dvPassport.style.display = chkPassport.checked ? "block" : "none";
|
||||
dvPassport.style.display = chkPassport.checked ? "none" : "block";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -123,13 +123,13 @@
|
||||
|
||||
|
||||
<tab>
|
||||
<ng-template tabHeading> Studymaterial Status</ng-template>
|
||||
<ng-template tabHeading> Study Material Status</ng-template>
|
||||
|
||||
|
||||
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<i class="fa fa-align-justify"></i>Studymaterials Status
|
||||
<i class="fa fa-align-justify"></i>Study Material Status
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user