video/app/views/admin/video_channels/_index.html.erb

39 lines
1.3 KiB
Plaintext

<script>
if(document.querySelectorAll("#orbit-bar").length==0) location.reload();
</script>
<table class="table main-list">
<thead>
<tr class="sort-header">
<% @table_fields.each do |f| %>
<%= thead(f) %>
<% end %>
</tr>
</thead>
<tbody>
<% @video_channels.each do |video_channel| %>
<tr>
<td>
<a href="/admin/video_channels" target="_blank"><%= video_channel.title %></a>
<div class="quick-edit">
<ul class="nav nav-pills">
<% if can_edit_or_delete?(video_channel) %>
<li><a href="/<%= I18n.locale.to_s %>/admin/video_channels/<%= video_channel.id.to_s %>/edit"><%= t(:edit) %></a></li>
<li><a href="<%=admin_video_channel_path(video_channel.id.to_s)%>" data-method="delete" data-confirm="Are you sure?"><%= t(:delete_) %></a></li>
<% end %>
</ul>
</div>
</td>
<td>
<%= video_channel.category.title rescue "" %>
<% if (video_channel.category.disable rescue false) %>
<span class='label'><%= t(:disabled) %></span>
<% end %>
</td>
<td>
<%= video_channel.owner rescue "" %>
</td>
</tr>
<% end %>
</tbody>
</table>