student view table class changes
This commit is contained in:
parent
2edbfc0f50
commit
16ff47bbe6
@ -33,10 +33,65 @@ td,th {
|
||||
<fieldset>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="row">
|
||||
<!-- <div class="col-md-12">-->
|
||||
<div class="col-md-3">
|
||||
<label >
|
||||
University
|
||||
</label><br>
|
||||
|
||||
<select ui-select2 class="form-control" tabindex="1" class="cs-select cs-skin-elastic" name="university" ng-model="univModel.university" required>
|
||||
<option value="" selected>Select University</option>
|
||||
<!--details.universityName for details in university-->
|
||||
<option ng-repeat="details in university" value="{{details}}">{{details.universityName}}</option>
|
||||
|
||||
</select>
|
||||
<span style="color:red;" ng-if="show" ng-show="Form.university.$dirty && Form.university.$error.required">Please select University.</span>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label >
|
||||
Activity
|
||||
</label><br>
|
||||
|
||||
<select ui-select2 class="form-control" tabindex="2" class="cs-select cs-skin-elastic" name="batch" ng-model="univModel.batch" required>
|
||||
<option value="" selected>Select Activity</option>
|
||||
<option ng-repeat="batchDetails in filterBatchDetails.batchDetails" value="{{batchDetails.BatchCode}}">{{batchDetails.BatchName}}</option>
|
||||
|
||||
</select>
|
||||
<span style="color:red;" ng-if="show" ng-show="Form.batch.$dirty && Form.batch.$error.required">Please select Batch.</span>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label >
|
||||
Assigned
|
||||
</label><br>
|
||||
|
||||
<select ui-select2 class="form-control" tabindex="2" class="cs-select cs-skin-elastic" name="batch" ng-model="univModel.batch" required>
|
||||
<option value="" selected>Select Assigned</option>
|
||||
<option ng-repeat="batchDetails in filterBatchDetails.batchDetails" value="{{batchDetails.BatchCode}}">{{batchDetails.BatchName}}</option>
|
||||
|
||||
</select>
|
||||
<span style="color:red;" ng-if="show" ng-show="Form.batch.$dirty && Form.batch.$error.required">Please select Batch.</span>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label >
|
||||
Status
|
||||
</label><br>
|
||||
|
||||
<select ui-select2 class="form-control" tabindex="2" class="cs-select cs-skin-elastic" name="batch" ng-model="univModel.batch" required>
|
||||
<option value="" selected>Select Status</option>
|
||||
<option ng-repeat="batchDetails in filterBatchDetails.batchDetails" value="{{batchDetails.BatchCode}}">{{batchDetails.BatchName}}</option>
|
||||
|
||||
</select>
|
||||
<span style="color:red;" ng-if="show" ng-show="Form.batch.$dirty && Form.batch.$error.required">Please select Batch.</span>
|
||||
</div>
|
||||
|
||||
|
||||
<!--</div>-->
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<!--<pre>{{searchData.date}}</pre>-->
|
||||
<div data-ng-controller="DatepickerDemoCtrl">
|
||||
<label>
|
||||
@ -46,11 +101,11 @@ td,th {
|
||||
is-open="startOpen" ng-init="startOpen = false" name="addDate" datepicker-options="dateOptions"
|
||||
placeholder="Select Date" close-text="Close" required="required" ng-change="changeDate()"
|
||||
show-button-bar="true" required/>
|
||||
<span style="color:red;" ng-if="show" ng-show="Form.addDate.$dirty && Form.addDate.$error.required">Please select FromDate.</span>
|
||||
<span style="color:red;" ng-if="show" ng-show="Form.addDate.$dirty && Form.addDate.$error.required">Please select From Date.</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<!--<pre>{{searchData.date}}</pre>-->
|
||||
<div data-ng-controller="DatepickerDemoCtrl">
|
||||
<label>
|
||||
@ -60,7 +115,7 @@ td,th {
|
||||
is-open="startOpen" ng-init="startOpen = false" name="toDate" datepicker-options="dateOptions"
|
||||
placeholder="Select Date" close-text="Close" required="required" ng-change="changeToDate()"
|
||||
show-button-bar="true" required/>
|
||||
<span style="color:red;" ng-if="show" ng-show="Form.toDate.$dirty && Form.toDate.$error.required">Please select ToDate.</span>
|
||||
<span style="color:red;" ng-if="show" ng-show="Form.toDate.$dirty && Form.toDate.$error.required">Please select To Date.</span>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -323,12 +323,12 @@
|
||||
<th>Date</th>
|
||||
<th>Comments</th> -->
|
||||
|
||||
<th>Status</th>
|
||||
<th>Comments</th>
|
||||
<th>Batch</th>
|
||||
<th>Date</th>
|
||||
<th>SEM/YEAR</th>
|
||||
<th>Form Type</th>
|
||||
<th style="text-align:center;">Status</th>
|
||||
<th style="text-align:center;">Comments</th>
|
||||
<th style="text-align:center;">Batch</th>
|
||||
<th style="text-align:center;">Date</th>
|
||||
<th style="text-align:center;">SEM/YEAR</th>
|
||||
<th style="text-align:center;">Form Type</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -377,10 +377,10 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<!-- <th>Type</th>-->
|
||||
<th>Sem/Year</th>
|
||||
<th>Status</th>
|
||||
<th>Date</th>
|
||||
<th>Comments</th>
|
||||
<th style="text-align:center;">Sem/Year</th>
|
||||
<th style="text-align:center;">Status</th>
|
||||
<th style="text-align:center;">Date</th>
|
||||
<th style="text-align:center;">Comments</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
@ -425,10 +425,10 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<!-- <th>Type</th>-->
|
||||
<th>Certificate Name</th>
|
||||
<th>Status</th>
|
||||
<th>Date</th>
|
||||
<th>Comments</th>
|
||||
<th style="text-align:center;">Certificate Name</th>
|
||||
<th style="text-align:center;">Status</th>
|
||||
<th style="text-align:center;">Date</th>
|
||||
<th style="text-align:center;">Comments</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
@ -475,11 +475,11 @@
|
||||
<table class="table table-striped table-bordered table-hover table-condensed" ng-if="course.markCardDetails!=false" fixed-header>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Sem/Year</th>
|
||||
<th style="text-align:center;">Sem/Year</th>
|
||||
<!-- <th>Name</th>-->
|
||||
<th>Status</th>
|
||||
<th>Date</th>
|
||||
<th>Comments</th>
|
||||
<th style="text-align:center;">Status</th>
|
||||
<th style="text-align:center;">Date</th>
|
||||
<th style="text-align:center;">Comments</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
@ -546,11 +546,11 @@
|
||||
<table class="table table-striped table-bordered table-hover table-condensed" ng-if="course.studyMaterialDetails!=false" fixed-header>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Sem/Year</th>
|
||||
<th style="text-align:center;">Sem/Year</th>
|
||||
<!-- <th>Date</th>-->
|
||||
<th>Status</th>
|
||||
<th>Date</th>
|
||||
<th>Comments</th>
|
||||
<th style="text-align:center;">Status</th>
|
||||
<th style="text-align:center;">Date</th>
|
||||
<th style="text-align:center;">Comments</th>
|
||||
|
||||
|
||||
</tr>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user