Some checks reported warnings
		
		
	
	Build and Publish Docker Container / build (push) Has been cancelled
				
			
		
			
				
	
	
		
			104 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| <h1 class="text-3xl font-medium">Attendance Tracker</h1>
 | |
| 
 | |
| <div class="px-4 sm:px-6 lg:px-8 flex flex-col lg:flex-row gap-4">
 | |
|   <% @courses.each do |course| %>
 | |
|     <div class="mt-8 flow-root">
 | |
|       <div class="-mx-4 -my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
 | |
|         <div class="inline-block py-2 align-middle sm:px-6 lg:px-8">
 | |
|           <div class="overflow-hidden shadow ring-1 ring-black ring-opacity-5 sm:rounded-lg">
 | |
|             <h2 class="text-2xl p-2 px-4"><%= course.title %></h2>
 | |
| 
 | |
|             <table class="border-t-2 divide-y divide-gray-300 w-full">
 | |
|               <thead class="bg-gray-50">
 | |
|               <tr>
 | |
|                 <th scope="col" class="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">Lecture</th>
 | |
|                 <th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Date</th>
 | |
|                 <th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Status</th>
 | |
|                 <th scope="col" class="px-3 py-3.5 text-left text-sm font-semibold text-gray-900">Action</th>
 | |
|               </tr>
 | |
|               </thead>
 | |
| 
 | |
|               <tbody class="divide-y divide-gray-200 bg-white">
 | |
|               <% course.lectures.order(:start_time).group_by { |lecture| lecture.week_number }.each do |(week_number, lectures)| %>
 | |
|                 <tr class="border-t border-gray-200">
 | |
|                   <th colspan="4" scope="colgroup" class="bg-gray-50 py-2 pl-4 pr-3 text-left text-sm font-semibold text-gray-900 sm:pl-6">Week <%= week_number %></th>
 | |
|                 </tr>
 | |
| 
 | |
|                 <% lectures.reject(&:cancelled).each do |lecture| %>
 | |
|                   <tr class="<%= class_names({
 | |
|                                                'lecture-future': lecture.start_time.future?,
 | |
|                                                'bg-green-100': lecture.attendance.present?,
 | |
|                                              }) %>">
 | |
|                     <td class="whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium text-gray-900 sm:pl-6">
 | |
|                       <%= lecture.title %>
 | |
|                     </td>
 | |
|                     <td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
 | |
|                       <%= lecture.start_time.to_fs(:dmy) %>
 | |
|                     </td>
 | |
| 
 | |
| 
 | |
|                     <% if lecture.cancelled %>
 | |
|                       <td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500" colspan="2">
 | |
|                         <div class="flex justify-center">
 | |
|                           Cancelled
 | |
|                         </div>
 | |
|                       </td>
 | |
|                     <% elsif lecture.start_time.future? %>
 | |
|                       <td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
 | |
|                       </td>
 | |
| 
 | |
|                       <td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
 | |
|                         <div class="flex justify-center">
 | |
|                           <%= button_to "Prepare",
 | |
|                                         lecture_start_preparation_path(id: lecture.id),
 | |
|                                         class: 'action-button'
 | |
|                           %>
 | |
|                         </div>
 | |
|                       </td>
 | |
|                     <% else %>
 | |
|                       <td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500 flex justify-center">
 | |
|                         <div>
 | |
|                           <% if lecture.attendance.nil? %>
 | |
|                             <i class="fa fa-times text-red-700"></i>
 | |
|                           <% elsif lecture.attendance.kind == 'concurrent' %>
 | |
|                             <i class="fa fa-chalkboard-user text-green-700"></i>
 | |
|                           <% elsif lecture.attendance.kind == 'catchup' %>
 | |
|                             <i class="fa fa-video text-green-700"></i>
 | |
|                           <% else %>
 | |
|                             <% lecture.attendance.kind %>
 | |
|                           <% end %>
 | |
|                         </div>
 | |
|                       </td>
 | |
| 
 | |
|                       <td class="whitespace-nowrap px-3 py-4 text-sm text-gray-500">
 | |
|                         <% if lecture.attendance.nil? %>
 | |
|                           <%= button_to "Start",
 | |
|                                         lectures_start_path(id: lecture.id),
 | |
|                                         class: 'action-button'
 | |
|                           %>
 | |
|                         <% else %>
 | |
|                           <div class="flex justify-center">
 | |
|                             <%= button_to "Review",
 | |
|                                           lecture_start_review_path(id: lecture.id),
 | |
|                                           class: 'action-button'
 | |
|                             %>
 | |
|                           </div>
 | |
| 
 | |
|                           <% if lecture.recording %>
 | |
|                             <%= link_to "Open recording", lecture.recording&.recording_url %>
 | |
|                           <% end %>
 | |
|                         <% end %>
 | |
|                       </td>
 | |
|                     <% end %>
 | |
|                   </tr>
 | |
|                 <% end %>
 | |
|               <% end %>
 | |
|               </tbody>
 | |
|             </table>
 | |
|           </div>
 | |
|         </div>
 | |
|       </div>
 | |
|     </div>
 | |
|   <% end %>
 | |
| </div>
 |