35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
<% content_for :page_specific_css do -%>
|
|
<%#= stylesheet_link_tag "admin/ad_banner_preview" %>
|
|
<% end -%>
|
|
<% content_for :page_specific_javascript do -%>
|
|
<%= javascript_include_tag "/static/jquery.cycle.all.latest.js" %>
|
|
<%= javascript_include_tag "inc/modal-preview" %>
|
|
<%= javascript_include_tag "lib/contenteditable" %>
|
|
|
|
<% end -%>
|
|
|
|
|
|
<div id="post-body-content" class="clear">
|
|
<ul id="banner_tab" class="nav nav-tabs">
|
|
<% @ad_banners.each do |ab| %>
|
|
<%= content_tag :li ,:class => (ab == @active ? 'active' : nil) do %>
|
|
<%if at_least_module_manager%>
|
|
<i class="icons-pencil"></i>
|
|
<%= link_to(ab.title,"##{ab.title.dehumanize}",:contenteditable=>"false",:data=>{:toggle=>"tab" ,'edit-url' =>(admin_rename_ad_banner_path ab) } )%>
|
|
<% else %>
|
|
<%= link_to(ab.title,"##{ab.title.dehumanize}",:data=>{:toggle=>"tab" } )%>
|
|
<% end -%>
|
|
<% end -%>
|
|
<% end -%>
|
|
|
|
<%= content_tag :li,link_to(t("admin.ad.new_banner"),"#new-a-banner",:data=>{:toggle=>"modal"}),:id=>'new_ad_banner_tab_but',:class => (@active.nil? ? 'active' : nil ) if at_least_module_manager%>
|
|
|
|
</ul>
|
|
|
|
<div class="tab-content" id="ad_banner-tab-content">
|
|
<%= render :partial => 'ad_banner_tab',:collection => @ad_banners %>
|
|
</div>
|
|
<%= render :partial => "modal_ad_banner_form"%>
|
|
|
|
</div>
|