2012-07-26 08:39:29 +00:00
|
|
|
<% # encoding: utf-8 %>
|
|
|
|
|
2012-05-08 12:06:56 +00:00
|
|
|
<% content_for :side_bar do %>
|
2013-01-03 06:46:02 +00:00
|
|
|
<%= render :partial => 'layouts/side_bar', :locals => {:link_name => t('site.settings'), :link_url => admin_site_site_info_path(@site), :icon => 'icons-cog', :side_bar_content => 'admin/sites/side_bar'} %>
|
2012-05-08 12:06:56 +00:00
|
|
|
<% end %>
|
|
|
|
|
2012-05-07 07:55:45 +00:00
|
|
|
<div id="poststuff">
|
2013-01-03 06:46:02 +00:00
|
|
|
<%= form_for @site, :url => admin_site_path(@site), :html => {:class => "clear"} do |f| %>
|
|
|
|
<div id="post-body">
|
|
|
|
<div id="post-body-content" class="clear">
|
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
<% @site_valid_locales.each do |locale|%>
|
|
|
|
<%#= raise @site_valid_locales.inspect %>
|
|
|
|
<%= content_tag :li, link_to(I18nVariable.from_locale(locale), ".#{locale}", :data => {:toggle => "tab"}), :class => (active_when_current_locale_eq locale) %>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
|
|
|
<div class="tab-content form-horizontal">
|
|
|
|
<div class="control-group" style="margin-bottom: 0;">
|
|
|
|
<div class="controls">
|
|
|
|
<label class="checkbox">
|
|
|
|
<%= f.check_box :title_always_on %> <%= t :always_display_title %>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% @site_valid_locales.each do |locale|%>
|
|
|
|
<%= content_tag :div, :class => "tab-pane fade #{active_when_current_locale_eq locale} #{locale}" do %>
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"><%= t 'site.title' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.fields_for :title_translations do |f| %>
|
|
|
|
<%= f.text_field locale, :class => "input-xxlarge", :value => (@site.title_translations[locale] rescue nil) %>
|
|
|
|
<% end %>
|
|
|
|
<p class="help-block"><%= (t 'site.title_help').html_safe %></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2013-04-23 10:48:18 +00:00
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"><%= t 'site.openness' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.check_box :frontend_closed %><%= I18n.t('site.frontend_closed') %><br/>
|
|
|
|
<%= f.check_box :backend_openness_on %><%= I18n.t('site.backend_openness_on') %>
|
|
|
|
<p class="help-block"><%= (t 'site.search_help').html_safe %></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-01-03 06:46:02 +00:00
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"><%= t 'site.search' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= text_field_tag 'site[search][domains]',(@site.search["domains"] rescue nil), {:class => "input-xxlarge" ,:placeholder => t("search.domains") }%>
|
|
|
|
<%= text_field_tag 'site[search][sitesearch]',(@site.search["sitesearch"] rescue nil),{ :class => "input-xxlarge" ,:placeholder => t("search.sitesearch") }%>
|
|
|
|
<p class="help-block"><%= (t 'site.search_help').html_safe %></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2012-07-25 09:20:25 +00:00
|
|
|
|
2013-01-03 06:46:02 +00:00
|
|
|
<% @site_valid_locales.each do |locale|%>
|
|
|
|
<%= content_tag :div, :class => "tab-pane fade #{active_when_current_locale_eq locale} #{locale}" do %>
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"><%= t 'site.keywords' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.fields_for :keywords do |f| %>
|
|
|
|
<%= f.text_area locale, :class => "input-xxlarge textarea-height-s", :value => (@site.keywords(locale) rescue nil) %>
|
|
|
|
<% end %>
|
|
|
|
<p class="help-block"><%= (t 'site.keywords_help').html_safe %></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"><%= t 'site.description' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.fields_for :description do |f| %>
|
|
|
|
<%= f.text_area locale, :class => "input-xxlarge textarea-height-s", :value => (@site.description(locale) rescue nil) %>
|
|
|
|
<% end %>
|
|
|
|
<p class="help-block"><%= (t 'site.description_help').html_safe %></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"><%= t 'site.header' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.fields_for :sub_menu_translations do |f| %>
|
|
|
|
<%= f.text_area locale, :class => "tinymce_textarea input-xxlarge", :value => (@site.sub_menu_translations[locale] rescue nil) %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"><%= t 'site.footer' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.fields_for :footer_translations do |f| %>
|
|
|
|
<%= f.text_area locale, :class => "tinymce_textarea input-xxlarge", :value => (@site.footer_translations[locale] rescue nil) %>
|
|
|
|
<% end %>
|
|
|
|
<p class="help-block"><%= (t 'site.footer_help').html_safe %></p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
|
|
<label class="control-label"><%= t 'site.default_image' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<%= f.file_field :default_image, :id => "input-upload", :class => 'upload', :onchange => "document.getElementById('fu').innerHTML = this.form.fu.value = this.value;" %>
|
|
|
|
<span id='fu' class="file-name"></span>
|
|
|
|
<!--請程式務必將圖片尺寸加入到行內裡-->
|
|
|
|
<% if @site.default_image %>
|
|
|
|
<%= image_tag( @site.default_image, :size=>"120x120") rescue ''%>
|
|
|
|
<% else %>
|
|
|
|
<img class="pull-left upload-picture" src="/assets/default-img.png" />
|
|
|
|
<% end %>
|
|
|
|
<br>
|
|
|
|
<% if @site.default_image.file %>
|
2013-01-06 19:57:36 +00:00
|
|
|
<label class="checkbox">
|
|
|
|
<%= check_box_tag 'site[remove_default_image]' %>
|
2013-03-12 10:13:48 +00:00
|
|
|
<%= t(:delete_) %>
|
2013-01-06 19:57:36 +00:00
|
|
|
</label>
|
2013-01-03 06:46:02 +00:00
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
2013-01-06 19:57:36 +00:00
|
|
|
<div class="control-group" style="margin-bottom: 0;">
|
|
|
|
<label class="control-label"><%= t 'site.mobile_version' %></label>
|
|
|
|
<div class="controls">
|
|
|
|
<label class="checkbox">
|
|
|
|
<%= f.check_box :mobile_on %>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
2013-01-03 06:46:02 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
|
|
<%= f.submit t("submit"), :class => "btn btn-primary" %>
|
|
|
|
<%= f.submit t("cancel"), :class => "btn ", :type => 'reset' %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2012-05-07 08:08:05 +00:00
|
|
|
</div>
|