forked from External/greenlight
show all rooms
This commit is contained in:
@ -2,9 +2,9 @@
|
||||
<div class="container">
|
||||
<div class="row pt-9">
|
||||
<div class="col-lg-12 col-sm-12">
|
||||
<h4 class="text-left text-primary">You have been invited to join</h4>
|
||||
<h1 class="display-3 text-left text-primary mb-3"><%= @room.name %></h1>
|
||||
<hr class="mt-2 float-left bg-azure" style="width: 20%;">
|
||||
<h4 class="text-left">You have been invited to join</h4>
|
||||
<h1 class="display-3 text-left mb-3 font-weight-400"><%= @room.name %></h1>
|
||||
<hr class="mt-2 float-left" style="width: 20%;">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -15,15 +15,19 @@
|
||||
<% else %>
|
||||
<span class="avatar" style="background-image: url(<%= @room.owner.image %>)"></span>
|
||||
<% end %>
|
||||
<h5 class="font-weight-normal ml-4 mt-3 text-primary"><%= @room.owner.name %> (Owner)</h5>
|
||||
<h5 class="font-weight-normal ml-4 mt-3"><%= @room.owner.name %> (Owner)</h5>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-4 col-sm-12">
|
||||
<%= form_for room_path, method: :post do |f| %>
|
||||
<div class="input-group" style="height: 60px;">
|
||||
<%= f.text_field :join_name, class: "form-control main-large", placeholder: "Enter your name!" %>
|
||||
<span class="input-group-append">
|
||||
<%= f.submit "Join", class: "btn btn-primary px-7 main-large" %>
|
||||
</span>
|
||||
<% if current_user %>
|
||||
<%= f.submit "Join", class: "btn btn-primary px-7 main-large btn-block"%>
|
||||
<% else %>
|
||||
<%= f.text_field :join_name, class: "form-control main-large", placeholder: "Enter your name!" %>
|
||||
<span class="input-group-append">
|
||||
<%= f.submit "Join", class: "btn btn-primary px-7 main-large" %>
|
||||
</span>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
</div>
|
||||
|
@ -2,7 +2,7 @@
|
||||
<div class="container">
|
||||
<div class="row pt-9">
|
||||
<div class="col-lg-9 col-sm-12">
|
||||
<h1 id="user-text" class="display-3 text-left mb-3"><%= @room.name %>
|
||||
<h1 id="user-text" class="display-3 text-left mb-3 font-weight-400"><%= @room.name %>
|
||||
<% if current_user.main_room == @room %>
|
||||
<i class="fas fa-home align-top" style="font-size: 22px;"></i>
|
||||
<% end %>
|
||||
@ -32,12 +32,14 @@
|
||||
</div>
|
||||
|
||||
<div class="row mt-7 mb-2">
|
||||
<% (current_user.rooms - [@room]).each do |room| %>
|
||||
<div class="col-lg-4 col-md-6 col-sm-12">
|
||||
<%= link_to room do %>
|
||||
<%= render "shared/components/room_block", room: room %>
|
||||
<% end %>
|
||||
</div>
|
||||
<% if current_user.rooms.length > 1 %>
|
||||
<% current_user.rooms.each do |room| %>
|
||||
<div class="col-lg-4 col-md-6 col-sm-12">
|
||||
<%= link_to room do %>
|
||||
<%= render "shared/components/room_block", room: room %>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
||||
<% end %>
|
||||
</div>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user