25 lines
1.2 KiB
Plaintext
25 lines
1.2 KiB
Plaintext
<div class="content">
|
|
<%= form_for(:ad_banner, :url => admin_ad_banner_path(:ad_banner), :remote => true) do |f| %>
|
|
<fieldset>
|
|
<legend>Ad Banner</legend>
|
|
<label>Banner Name</label>
|
|
<%= f.text_field :title, :class=>"input-large", :placeholder=>"Banner Name" %>
|
|
<span class="help-block">Banner Name only english</span>
|
|
<label for="timeout">Ste</label>
|
|
<%= f.text_field :transition_sec, :class => 'input-large', :placeholder => 'Time' %>
|
|
<span class="help-block">Please enter the number of seconds</span>
|
|
<label>Best Size</label>
|
|
<%= f.text_field :best_size, :class=>"input-large", :placeholder=>"Banner Size" %>
|
|
<span class="help-block">Best Size EX:120x30 </span>
|
|
<label>Effect</label>
|
|
<%= f.select :ad_fx ,AdBanner::FX_TYPES %>
|
|
<div class="preview">
|
|
<%= image_tag "slideshow_preview_A.png", :width=>220 %>
|
|
<%= image_tag "slideshow_preview_B.png", :width=>220 %>
|
|
</div>
|
|
<span class="help-block">Effect</span>
|
|
<a href="javascript:$.pageslide.close()" class="btn btn-small"><%= t(:cancel) %></a>
|
|
<%= f.submit t(:create_), class: 'btn btn-primary btn-small' %>
|
|
</fieldset>
|
|
<% end %>
|
|
</div> |