Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. col_infraId requiredSeat available collegeInfrastructureId
  2. 1 100 150 1
  3. 2 200 180 2
  4.  
  5. collegeInfrastructureId type name
  6. 1 UGC Land Requirement(In acres)
  7. 2 UGC Class rooms
  8. 3 AICTE Total Area
  9. 4 AICTE Loans
  10.  
  11. <tbody>
  12. <tr role="row" class="even" data-ng-repeat="infraitem in
  13. allInfraitemsByType">
  14. <td><strong>{{infraitem.name}}</strong></td>
  15. <td><input type="text"
  16. name="requiredseat" data-ng-model="infraitem.requiredseat"></td>
  17. <td>
  18. <input type="text" name="available" data-ng-
  19. model="infraitem.available"></td>
  20. <td class="text-center"><button type="submit" class="btn GreenBtn"
  21. data-ng-click="saveInfrastructureDetails(infraitem)"><span
  22. class="glyphicon glyphicon-ok"></span>Save</button></td>
  23. </tr>
  24. </tbody>
  25.  
  26. SELECT collegeInfrastructureId as collegeInfrastructureId,type as
  27. type,name as name FROM college_infrastructure where type=:type
  28. order by collegeInfrastructureId asc";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement