-
- <% @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 %>
-
-
-
-
-
-
-
- <% @site_valid_locales.each do |locale|%>
- <%= content_tag :div, :class => "tab-pane fade #{active_when_current_locale_eq locale} #{locale}" do %>
-
-
-
- <%= f.fields_for :title_translations do |f| %>
- <%= f.text_field locale, :class => "input-xxlarge", :value => (@site.title_translations[locale] rescue nil) %>
- <% end %>
-
<%= (t 'site.title_help').html_safe %>
-
-
- <% end %>
- <% end %>
-
-
-
- <%= 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") }%>
-
<%= (t 'site.search_help').html_safe %>
-
-
+ <%= form_for @site, :url => admin_site_path(@site), :html => {:class => "clear"} do |f| %>
+
+
+
+ <% @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 %>
+
+
+
+
+
+
+
+ <% @site_valid_locales.each do |locale|%>
+ <%= content_tag :div, :class => "tab-pane fade #{active_when_current_locale_eq locale} #{locale}" do %>
+
+
+
+ <%= f.fields_for :title_translations do |f| %>
+ <%= f.text_field locale, :class => "input-xxlarge", :value => (@site.title_translations[locale] rescue nil) %>
+ <% end %>
+
<%= (t 'site.title_help').html_safe %>
+
+
+ <% end %>
+ <% end %>
+
+
+
+ <%= 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") }%>
+
<%= (t 'site.search_help').html_safe %>
+
+
- <% @site_valid_locales.each do |locale|%>
- <%= content_tag :div, :class => "tab-pane fade #{active_when_current_locale_eq locale} #{locale}" do %>
-
-
-
- <%= f.fields_for :keywords do |f| %>
- <%= f.text_area locale, :class => "input-xxlarge textarea-height-s", :value => (@site.keywords(locale) rescue nil) %>
- <% end %>
-
<%= (t 'site.keywords_help').html_safe %>
-
-
-
-
-
- <%= f.fields_for :description do |f| %>
- <%= f.text_area locale, :class => "input-xxlarge textarea-height-s", :value => (@site.description(locale) rescue nil) %>
- <% end %>
-
<%= (t 'site.description_help').html_safe %>
-
-
-
-
-
- <%= f.fields_for :footer_translations do |f| %>
- <%= f.text_area locale, :class => "tinymce_textarea input-xxlarge", :value => (@site.footer_translations[locale] rescue nil) %>
- <% end %>
-
<%= (t 'site.footer_help').html_safe %>
-
-
-
-
-
- <%= 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 %>
-
-
-
-
-
- <%= f.file_field :default_image, :id => "input-upload", :class => 'upload', :onchange => "document.getElementById('fu').innerHTML = this.form.fu.value = this.value;" %>
-
-
- <% if @site.default_image %>
- <%= image_tag( @site.default_image, :size=>"120x120") rescue ''%>
- <% else %>
-
- <% end %>
-
- <% if @site.default_image.file %>
- <%= f.check_box :remove_default_image %>
- <%= t('刪除已上傳檔案') %>
- <% end %>
-
-
- <% end %>
- <% end %>
-
-
-
-
- <%= f.submit t("submit"), :class => "btn btn-primary" %>
- <%= f.submit t("cancel"), :class => "btn ", :type => 'reset' %>
-
-<% end %>
+ <% @site_valid_locales.each do |locale|%>
+ <%= content_tag :div, :class => "tab-pane fade #{active_when_current_locale_eq locale} #{locale}" do %>
+
+
+
+ <%= f.fields_for :keywords do |f| %>
+ <%= f.text_area locale, :class => "input-xxlarge textarea-height-s", :value => (@site.keywords(locale) rescue nil) %>
+ <% end %>
+
<%= (t 'site.keywords_help').html_safe %>
+
+
+
+
+
+ <%= f.fields_for :description do |f| %>
+ <%= f.text_area locale, :class => "input-xxlarge textarea-height-s", :value => (@site.description(locale) rescue nil) %>
+ <% end %>
+
<%= (t 'site.description_help').html_safe %>
+
+
+
+
+
+ <%= 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 %>
+
+
+
+
+
+ <%= f.fields_for :footer_translations do |f| %>
+ <%= f.text_area locale, :class => "tinymce_textarea input-xxlarge", :value => (@site.footer_translations[locale] rescue nil) %>
+ <% end %>
+
<%= (t 'site.footer_help').html_safe %>
+
+
+
+
+
+ <%= f.file_field :default_image, :id => "input-upload", :class => 'upload', :onchange => "document.getElementById('fu').innerHTML = this.form.fu.value = this.value;" %>
+
+
+ <% if @site.default_image %>
+ <%= image_tag( @site.default_image, :size=>"120x120") rescue ''%>
+ <% else %>
+
+ <% end %>
+
+ <% if @site.default_image.file %>
+ <%= f.check_box :remove_default_image %>
+ <%= t('刪除已上傳檔案') %>
+ <% end %>
+
+
+ <% end %>
+ <% end %>
+
+