index.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:4k
源码类别:

Ajax

开发平台:

Others

  1. <% @page_heading = _('General settings') %>
  2. <% subtabs_for(:settings) %>
  3. <% form_tag :action => 'update' do %>
  4. <div class='ui-accordion ui-widget ui-helper-reset ui-accordion-icons settings'>
  5.   <h3 class='ui-accordion-header ui-helper-reset ui-state-default ui-corner-top'><span class='ui-icon ui-icon-gear'></span> <%= _("Your blog")%></h3>
  6.   <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
  7.     <div class='setting'>
  8.       <label for="setting_blog_name" class="float"><%= _("Blog name")%></label>      
  9.       <div class='input_text'>
  10.         <%= text_field(:setting, :blog_name, {:class => 'medium', :size => this_blog.blog_name.length })%>
  11.       </div>      
  12.     </div>
  13.     <div class='setting clear'>
  14.       <label class="clear float" for="setting_blog_subtitle"><%= _("Blog subtitle")%></label>  
  15.       <div class='input_text'>
  16.         <%= text_field(:setting, :blog_subtitle, {:class => 'medium', :size => this_blog.blog_subtitle.length})%>
  17.       </div>      
  18.     </div>
  19.     <div class='setting clear'>
  20.       <label class="float" for="base_url"><%= _("Blog URL")%></label>
  21.       <div class='input_text'>
  22.         <%= text_field(:setting, :base_url, {:size => this_blog.base_url.length, :class => 'medium'})%>
  23.       </div>      
  24.     </div>
  25.     <div class='setting clear'>
  26.       <label class="float" for="setting_lang"><%= _("Language")%></label>
  27.       <div class='input_text'>
  28.         <select name="setting[lang]" id='setting_lang'>
  29.           <%= fetch_langs %>
  30.         </select>
  31.       </div>      
  32.     </div>
  33.     <div class='setting clear'>
  34.       <label class="float" for="setting_allow_signup"><%= _("Allow users to register")%></label>
  35.       <div class='input_text'>
  36.         <%= check_box(:setting, :allow_signup) %>    
  37.         <span><%= _("You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.") %>.</span>        
  38.       </div>      
  39.     </div>
  40.     <div class='setting clear'>
  41.       <label class="float" for="setting_admin_display_elements"><%= _("Items to display in admin lists")%></label>
  42.       <div class='input_text'>
  43.         <%= text_field(:setting, :admin_display_elements, {:size => 4, :class => 'small'})%>
  44.       </div>      
  45.     </div>
  46.   </div>
  47. </div>
  48. <div class='ui-accordion ui-widget ui-helper-reset ui-accordion-icons'>
  49.   <h3 class='ui-accordion-header ui-helper-reset ui-state-default ui-corner-top'><span class='ui-icon ui-icon-gear'></span> <%= _("Publishing options")%></h3>
  50.   <div class='ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content-active'>
  51.     <div class='setting'>
  52.       <label for="setting_limit_article_display" class="float"><%= _("Display")%> </label>
  53.       <div class='input_text'>      
  54.         <%= text_field(:setting, :limit_article_display, {:size => 4, :class => 'small'})%>
  55.         <%= _("articles on my homepage by default")%>
  56.       </div>      
  57.     </div>
  58.     <div class='setting clear'>
  59.       <label for="setting_limit_rss_display" class="float"><%= _("Display")%> </label>    
  60.       <div class='input_text'>
  61.         <%= text_field(:setting, :limit_rss_display, {:size => 4, :class => 'small'})%>
  62.         <%= _("articles in my news feed by default")%>.
  63.       </div>      
  64.     </div>
  65.     <div class='setting clear'>
  66.       <label class="float" for="setting_show_extended_on_rss"><%= _("Show full article on feed")%>:</label>
  67.       <div class='input_text'>
  68.         <%= check_box(:setting, :show_extended_on_rss) %>    
  69.       </div>      
  70.     </div>
  71.     <div class='setting clear'>
  72.       <label class="float" for="setting_feedburner_url"><%= _("Feedburner ID")%></label>
  73.       <div class='input_text'>
  74.         <%= text_field(:setting, :feedburner_url, :class => 'medium')%> 
  75.         <span><%= _('You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.') %></span>
  76.       </div>      
  77.     </div>
  78.   </div>
  79. </div>
  80. <%= hidden_field_tag 'from', 'index' %>  
  81. <%= render :partial => 'submit' %>
  82. <% end %>