Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <HTML>
  2. <head>
  3. </head>
  4. <!-- <body>
  5. <select id = "pull">
  6. <option value="" disabled selected>Choose a Class</option>
  7. <option value="class1">Class 1</option>
  8. <option value="class2">Class 2</option>
  9. <option value="class3">Class 3</option>
  10. </select>
  11. <button onclick="selectClass()">Select Class</button>
  12.  
  13.  
  14. </body>
  15.  
  16. <div id = "searchData">
  17. <input type="text" id="search" placeholder="Search">
  18. <button onclick="searchDataTable()">Search</button>
  19. </div> -->
  20.  
  21.  
  22.  
  23. <div id="tableLayout">
  24. <% @classrooms.each do |c| %>
  25. <%= link_to classroom_path(c) do %>
  26. <div id="classes">
  27. <div id="classList">
  28. <%= c.ClassName %>
  29. <div id="profName"><%= c.ProfessorName %></div>
  30. </div>
  31. </div>
  32. <% end %>
  33. <% end %>
  34.  
  35. <% if( @user.userType == "instructor") %>
  36. <%= link_to new_classroom_path do %>
  37. <div id="classes" style="background-color: #DA70D6">
  38. <div id="classList" style="height: 32px">
  39. + Add New Class
  40. </div>
  41. </div>
  42. <% end %>
  43. <% end %>
  44. </div>
  45.  
  46.  
  47.  
  48.  
  49.  
  50. <div id="output"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement