Files
old-holivud2/app/views/broadcasts/_broadcast_status.html.erb

10 lines
589 B
Plaintext
Raw Normal View History

2020-05-31 22:38:19 +02:00
<% if broadcast.streamer_connected? || (broadcast.streamer_recording? && !broadcast.active?) %>
2020-08-31 18:19:00 +02:00
<p class="mb-1">Live stream has connected successfully and will be available soon.</p>
2020-05-31 22:38:19 +02:00
<% elsif broadcast.streamer_recording? && broadcast.active? %>
2020-08-31 18:19:00 +02:00
<p class="mb-1">Live stream has begun, click play to watch it.</p>
2020-05-31 22:38:19 +02:00
<% elsif broadcast.streamer_disconnected? %>
2020-08-31 18:19:00 +02:00
<p class="mb-1">Live stream got disconnected.</p>
2020-05-31 22:38:19 +02:00
<% elsif (broadcast.idle? && broadcast.streamer_idle?) || (broadcast.created? && broadcast.streamer_idle?) %>
2020-08-31 18:19:00 +02:00
<p class="mb-1">Live stream is waiting to begin.</p>
<% end %>