<%= t('activerecord.models.settings') %>

<%= render 'tab_admin_menu' %> <%= simple_form_for @setting, :html => { class: 'form-horizontal' } do |f| %> <%= f.error_notification %>
<%= f.input :company_name %>
<%= f.input :contact_email, hint: 'this is used to get the messages from the contact form and for other things as well.' %>
<%= f.input :site_name, hint: 'this is often the same as the company name' %>
<%= f.input :site_tagline, hint: 'a small descriptive sentence' %>
<%= f.input :enable_comments_in_pages, as: :boolean, inline_label: true, label: false %>
<%= f.input :disable_blog, as: :boolean, inline_label: true, label: false, hint: 'should be checked if you do NOT want a blog' %>
<%= f.input :blog_name %>
<%= f.input :blog_tagline, hint: 'a small descriptive sentence' %>
<%= f.input :enable_comments_in_blog, as: :boolean, inline_label: true, label: false %>
<%= f.button :submit, :class => 'btn btn-primary' %>
<% end %> <%= render 'shared/admin_sidebar' %>