This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/app/views/shared/components/_room_block.html.erb

46 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-05-29 15:28:29 -04:00
<div class="card">
<div class="card-body p-1">
2018-06-01 14:28:34 -04:00
<table class="table table-hover table-vcenter text-nowrap table-no-border">
2018-05-29 15:28:29 -04:00
<tbody>
2018-06-01 14:28:34 -04:00
<td style="border-top: none;">
2018-06-01 14:20:40 -04:00
<span class="stamp stamp-md bg-cyan">
2018-05-31 22:15:18 -04:00
<% if room == current_user.main_room %>
<i class="fas fa-home"></i>
<% else %>
2018-06-01 14:20:40 -04:00
<i class="fas fa-chalkboard-teacher"></i>
2018-05-31 22:15:18 -04:00
<% end %>
2018-05-31 15:04:18 -04:00
</span>
2018-05-29 15:28:29 -04:00
</td>
2018-06-01 14:28:34 -04:00
<td style="border-top: none;">
<h4 class="m-0 text-normal" style="color: #495057;"><%= room.name %></h4>
2018-05-29 15:28:29 -04:00
<div class="small text-muted">
2018-06-07 15:52:42 -04:00
<% if room.sessions > 0 %>
<i>Last session on <%= recording_date(room.last_session) %></i>
<% else %>
<i>This room has no sessions, yet!</i>
<% end %>
2018-05-29 15:28:29 -04:00
</div>
</td>
2018-06-01 14:28:34 -04:00
<td class="text-right" style="border-top: none;">
2018-05-29 15:28:29 -04:00
<div class="item-action dropdown">
<a href="javascript:void(0)" data-toggle="dropdown" class="icon"><i class="fe fe-more-vertical"></i></a>
<div class="dropdown-menu dropdown-menu-right">
2018-06-03 14:57:30 -04:00
<%= button_to root_path, class: "dropdown-item" do %>
<i class="dropdown-icon fas fa-cog"></i> Room Settings
<% end %>
2018-05-31 15:04:18 -04:00
<% if room != current_user.main_room %>
2018-06-01 11:55:52 -04:00
<%= button_to make_home_path(room), class: "dropdown-item" do %>
<i class="dropdown-icon fas fa-home"></i> Make Home Room
2018-05-31 15:04:18 -04:00
<% end %>
2018-06-01 17:28:39 -04:00
<%= button_to room, method: :delete, data: { confirm: 'Are you sure?' }, class: "dropdown-item" do %>
<i class="dropdown-icon far fa-trash-alt"></i> Delete
<% end %>
2018-06-01 11:55:52 -04:00
<% end %>
2018-05-29 15:28:29 -04:00
</div>
</div>
</td>
</tbody>
</table>
</div>
</div>