course controller added
This commit is contained in:
parent
2fc2501718
commit
e6ad9db665
@ -1,3 +1,13 @@
|
|||||||
|
<style>
|
||||||
|
b.fa {
|
||||||
|
display: inline-block;
|
||||||
|
border-radius: 60px;
|
||||||
|
box-shadow: 0px 0px 2px #007AFF;
|
||||||
|
padding: 0.5em 0.6em;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<!-- start: UNIVERSITY TITLE -->
|
<!-- start: UNIVERSITY TITLE -->
|
||||||
<section id="page-title">
|
<section id="page-title">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
@ -56,7 +66,7 @@
|
|||||||
<th ng-click="sort('EmailID')">Email ID
|
<th ng-click="sort('EmailID')">Email ID
|
||||||
<span class="glyphicon sort-icon" ng-show="sortKey=='EmailID'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
<span class="glyphicon sort-icon" ng-show="sortKey=='EmailID'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
||||||
</th>
|
</th>
|
||||||
<th style="text-align: center;"> Details
|
<th style="text-align: center;">
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@ -67,9 +77,10 @@
|
|||||||
<td>{{p.UniversityName}}</td>
|
<td>{{p.UniversityName}}</td>
|
||||||
<td>{{p.EmailID}}</td>
|
<td>{{p.EmailID}}</td>
|
||||||
<td style="text-align: center;">
|
<td style="text-align: center;">
|
||||||
<input type=button class="btn btn-info btn-xs" ladda="ldloading1.zoom_in" id="editRowBtn{{p.UniversityID}}" value="Modify"
|
<a href="#" class="text-primary" id="editRowBtn{{p.UniversityID}}" ng-click="setEditId(p.UniversityID);"><b class="fa fa-hover fa-pencil " aria-hidden="true"></b>
|
||||||
ng-click="setEditId(p.UniversityID);">
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr ng-show="editId === p.UniversityID" ng-if="editId === p.UniversityID">
|
<tr ng-show="editId === p.UniversityID" ng-if="editId === p.UniversityID">
|
||||||
<td colspan="6" ng-include src="'assets/views/editUniversityDetails.html'"></td>
|
<td colspan="6" ng-include src="'assets/views/editUniversityDetails.html'"></td>
|
||||||
@ -105,7 +116,7 @@
|
|||||||
|
|
||||||
<tab heading="Add University" id="adduniversity">
|
<tab heading="Add University" id="adduniversity">
|
||||||
<div>
|
<div>
|
||||||
<form name="Form" id="form" novalidate ng-submit="universityForm.submit(Form, myModel)" method="post">
|
<form name="Form" id="form" novalidate ng-submit="universityForm.submit(Form, myModel,'zoom-in')" method="post">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user