<%= form_for @site, :url => admin_site_path(@site), :html => {:class => "clear"} do |f| %>
@@ -9,20 +13,22 @@
<% end %>
-
-
+
- <%= f.check_box :title_always_on %> <%= t 'admin.always_display_title' %>
+
<% @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, @site.title do |f| %>
<%= f.text_field locale, :class => "input-xxlarge" %>
<% end %>
-
In addition to freeform text, any HTML5 text-based input appears like so.
+
<%= (t 'admin.site_title_help').html_safe %>
<% end %>
@@ -30,12 +36,12 @@
<% @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, @site.keywords do |f| %>
<%= f.text_area locale, :class => "input-xxlarge textarea-height-s" %>
<% end %>
-
In addition to freeform text, any HTML5 text-based input appears like so.
+
<%= (t 'admin.site_keywords_help').html_safe %>
@@ -44,7 +50,7 @@
<%= f.fields_for :description, @site.description do |f| %>
<%= f.text_area locale, :class => "input-xxlarge textarea-height-s" %>
<% end %>
-
In addition to freeform text, any HTML5 text-based input appears like so.
+
<%= (t 'admin.site_description_help').html_safe %>
@@ -53,6 +59,15 @@
<%= f.fields_for :footer, @site.footer do |f| %>
<%= f.text_area locale, :class => "tinymce_textarea input-xxlarge" %>
<% end %>
+
<%= (t 'admin.site_footer_help').html_safe %>
+
+
+
+
+
+ <%= f.fields_for :sub_menu, @site.sub_menu do |f| %>
+ <%= f.text_area locale, :class => "tinymce_textarea input-xxlarge" %>
+ <% end %>
<% end %>
diff --git a/app/views/admin/sites/system_info.html.erb b/app/views/admin/sites/system_info.html.erb
index 45535dac..dc9d45c9 100644
--- a/app/views/admin/sites/system_info.html.erb
+++ b/app/views/admin/sites/system_info.html.erb
@@ -1 +1,5 @@
+<% content_for :side_bar do %>
+ <%= render 'side_bar' %>
+<% end %>
+
system_info.html.erb
\ No newline at end of file
diff --git a/app/views/admin/sites/ui_theme.html.erb b/app/views/admin/sites/ui_theme.html.erb
index 222f5969..540405da 100644
--- a/app/views/admin/sites/ui_theme.html.erb
+++ b/app/views/admin/sites/ui_theme.html.erb
@@ -1 +1,5 @@
+<% content_for :side_bar do %>
+ <%= render 'side_bar' %>
+<% end %>
+
ui_theme.html.erb
\ No newline at end of file
diff --git a/app/views/layouts/_orbit_bar.html.erb b/app/views/layouts/_orbit_bar.html.erb
index 46f2b712..23085046 100644
--- a/app/views/layouts/_orbit_bar.html.erb
+++ b/app/views/layouts/_orbit_bar.html.erb
@@ -10,12 +10,13 @@
<%#= link_to content_tag(:i, nil, :class => 'icons-asset') + t('admin.asset'), admin_assets_path %>
<%= link_to content_tag(:i, nil, :class => 'icons-structure') + t('admin.structure'), admin_items_path %>
+
<%= link_to content_tag(:i, nil, :class => 'icons-cog') + t('admin.site_settings'), admin_site_site_info_path(@site) %>
<%#= link_to content_tag(:i, nil, :class => 'icons-plus-cube') + t('admin.add_item') %>