42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
<table class="table main-list">
|
|
<thead>
|
|
<tr>
|
|
<th class="span1"><%= t('ad_banner.title') %></th>
|
|
<th class="span1"><%= t('ad_banner.transition_msec') %></th>
|
|
<th class="span1"><%= t('ad_banner.ad_fx') %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="tbody_locations" class="sort-holder">
|
|
<% @ad_banners.each do |ad_banner| %>
|
|
<tr class="with_action">
|
|
<td><%= ad_banner.title %>
|
|
<div class="quick-edit">
|
|
<ul class="nav nav-pills">
|
|
<% if is_admin?%>
|
|
<li><%= link_to t(:edit), edit_admin_ad_banner_path(ad_banner)%></li>
|
|
<li><%= link_to 'Destroy', admin_ad_banner_path(ad_banner), method: :delete , :confirm => t(:sure?) %></li>
|
|
|
|
<% end %>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
<td><%= ad_banner.transition_msec %></td>
|
|
<td><%= ad_banner.ad_fx%></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<%if is_manager? %>
|
|
<!-- footer -->
|
|
<div class="bottomnav clearfix">
|
|
<div class="action pull-right">
|
|
<%= link_to content_tag(:i, nil, class: "icons-plus") + " " + t(:add_new), "#add-banner", :class => "btn btn-primary open-slide"%>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="add-banner" class="nano" style="display:none">
|
|
<%= render 'new' %>
|
|
</div>
|
|
|
|
<% end %>
|