orbit-basic/app/views/admin/ad_banners/_ad_banner_tab.html.erb

40 lines
2.1 KiB
Plaintext
Raw Normal View History

2012-04-25 09:17:04 +00:00
<div class="tab-pane fade <%= "active in" if ad_banner_tab==@active%>" id=<%= ad_banner_tab.title.dehumanize %>>
2012-05-15 08:39:23 +00:00
<% if at_least_module_manager || sub_manager?(ad_banner_tab)%>
2012-04-01 15:39:49 +00:00
<%= form_for ad_banner_tab,:url=> admin_ad_banner_path(ad_banner_tab),:method => :put,:class=>"input-medium" do |f| -%>
2012-04-25 08:26:27 +00:00
<div class="adbanner-setup well">
2012-09-12 11:12:50 +00:00
<!--<p><%#= t("ad.banner_best_size") %></p>-->
<%= f.label :ad_fx, t('ad.ab_fx') %>
2012-04-25 08:26:27 +00:00
<%= f.select :ad_fx ,AdBanner::FX_TYPES %>
2012-09-12 11:12:50 +00:00
<%= f.label :transition_sec, t('ad.transition_sec') %>
<%= f.text_field :transition_sec,:placeholder=>t('ad.sec_place_holder'),:class=> "span3" %> <%= t("ad.trans_unit_sec") %>
<%if at_least_module_manager%>
2012-09-12 11:12:50 +00:00
<%= f.label :best_size, t('ad.best_size') %>
<%= f.text_field :best_size %> Ex: 500px x 300px
<% end -%>
2012-04-25 08:26:27 +00:00
<br>
2012-09-12 11:12:50 +00:00
<%= f.submit t("ad.update_banner"), :class => 'btn' %>
2012-04-25 08:26:27 +00:00
<%= f.submit t("cancel"),:type=>'reset', :class => 'btn' %>
</div>
2012-05-15 08:39:23 +00:00
<% end -%>
<% end -%>
2012-09-12 11:12:50 +00:00
<h3><%= t("ad.picture_list")%></h3>
2012-04-25 08:26:27 +00:00
<div class="adbanner-list">
<%if (at_least_module_manager || ad_banner_tab.cur_user_is_sub_manager_of(:edit) )%>
2012-05-15 08:39:23 +00:00
<%= content_tag :div ,:class=>'adbanner-action' do%>
2012-09-12 11:12:50 +00:00
<%= link_to t("ad.new_image"),new_admin_ad_banner_ad_image_path(ad_banner_tab) ,:class => "btn btn-primary"%>
2012-11-27 03:15:15 +00:00
<%= link_to t(:preview), admin_realtime_preview_ad_banner_path(ad_banner_tab.id) , :class=>'preview_trigger btn btn-success'%>
2012-05-15 08:39:23 +00:00
<% end -%>
<% end -%>
2012-04-25 08:26:27 +00:00
<ul class="clear">
<%= render :partial => "ad_image_update", :collection => ad_banner_tab.ad_images,:as => :ad_image,:locals=>{:ad_banner => ad_banner_tab} %>
</ul>
2012-05-15 08:39:23 +00:00
<% if at_least_module_manager %>
2012-05-15 01:57:05 +00:00
<%= show_ad_banner_permission_link ad_banner_tab%>
2012-11-27 03:15:15 +00:00
<%= link_to t(:delete_),admin_ad_banner_path(ad_banner_tab),:class => 'btn',:method => :delete,:confirm => t('sure?') %>
2012-05-15 01:57:05 +00:00
<% end -%>
2012-04-25 08:26:27 +00:00
<%#= render :partial => 'new_add_banner_file', :object => ad_banner_tab.ad_images.build, :locals => { :field_name => "new_ad_images[]", :f => f, :classes => "r_destroy" } %>
</div>
<%#= render :partial => 'preview_block',:locals=> {:ad_banner =>ad_banner_tab} %>
2012-04-01 15:39:49 +00:00
</div>