42 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
<tr id="<%= "attribute_#{attribute_field.id}" if !attribute_field.new_record? %>" class="list_item">
 | 
						|
  <td><%= attribute_field.new_record? ? (f.text_field :key) : attribute_field.key %></td>
 | 
						|
  <td class='select_mulitlingual' style='text-align:center'>
 | 
						|
    <%= f.check_box :locale %>
 | 
						|
  </td>
 | 
						|
	<%= f.fields_for :title_translations do |f| %>
 | 
						|
	  <% @site_valid_locales.each do |locale| %>
 | 
						|
	    <td><%= f.text_field locale, :style => "width:130px", :value => (attribute_field.title_translations[locale] rescue nil) %></td>
 | 
						|
	  <% end %>
 | 
						|
	<% end %>
 | 
						|
  <td class='select_type'>
 | 
						|
    <ul>
 | 
						|
      <li><%= t(:markup) %> : <%= f.select :markup, LIST[:markups].keys, {}, {:style => "width:90px"} %> </li>
 | 
						|
      <li><%= t(:markup_value) %> : <%= f.text_field :markup_value,:size=>50 %></li>
 | 
						|
      <li><%= t(:markup_options) %> : <%= f.text_field :markup_options,:size=>50 %></li>
 | 
						|
      <li><%= t(:locale) %> : locale<%= f.check_box :locale,{},true,false %></li>
 | 
						|
      <li><%= t(:built_in) %> : built_in<%= f.check_box :built_in,{},true,false %></li>
 | 
						|
      <li><%= t(:disabled) %> : disabled<%= f.check_box :disabled,{},true,false %></li>
 | 
						|
      <li><%= t(:add_more) %> : add_more<%= f.check_box :add_more,{},true,false %></li>
 | 
						|
      <li><%= t(:neutral_title) %> : neutral_title<%= f.text_field :neutral_title,:size=>50 %></li>
 | 
						|
      <li><%= t(:neutral_for) %> : neutral_for<%= f.select :neutral_for, VALID_LOCALES, {}, {:style => "width:90px"} %> </li>
 | 
						|
    <!--  
 | 
						|
      <li><%#= attribute_field[:markup].eql?('select') ? nil : "style='display:none'"%> </li>
 | 
						|
      <li><%#= t(:options) %>: <%#= f.text_field :markup_value%></li>
 | 
						|
    -->
 | 
						|
    </ul>
 | 
						|
  </td>
 | 
						|
  <td class="action">
 | 
						|
		<% if attribute_field.new_record? %>
 | 
						|
	      <a href="#" class="delete"><%= t(:delete_) %></a>
 | 
						|
	    <% else %>	
 | 
						|
	      <%= f.hidden_field :id %>
 | 
						|
				<% if attribute_field.is_built_in? %>
 | 
						|
					<a href="#" class="switch" id="<%= attribute_field.id %>"></a>
 | 
						|
					<%= f.hidden_field :disabled, :value => attribute_field.is_disabled? , :class => 'built_in_state' %>
 | 
						|
				<% else %>
 | 
						|
					<a href="#" class="remove_existing_record delete"><%= t(:delete_) %></a>
 | 
						|
		      <%= f.hidden_field :_destroy, :value => nil, :class => 'should_destroy' %>
 | 
						|
				<% end %>
 | 
						|
	    <% end %>
 | 
						|
  </td>
 | 
						|
</tr> |