14 lines
654 B
Plaintext
14 lines
654 B
Plaintext
<tr>
|
|
<td><%= broadcast.project.name %></td>
|
|
<td><%= broadcast.name %></td>
|
|
<td class="text-right">
|
|
<div class="btn-group">
|
|
<%= button_tag "Manage", class: "btn btn-light btn-sm dropdown-toggle border", data: { toggle: "dropdown", boundary: "window" }, aria: { haspopup: true, expanded: false } %>
|
|
<div class="dropdown-menu dropdown-menu-right">
|
|
<%= link_to "View on Mux", "#{ENV['MUX_LIVE_STREAM_DASHBOARD_URL']}/#{broadcast.stream_uid}", class: "dropdown-item", target: "_blank" %>
|
|
<%= link_to "Edit", [:edit, :admin, broadcast, locale: I18n.locale], class: "dropdown-item" %>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|