Sha256: d8791af086d753bcfd3fbf3e6b5b2697d49adb7b4b0b36b2b7ef57c30bb0b6c7
Contents?: true
Size: 1.54 KB
Versions: 2
Compression:
Stored size: 1.54 KB
Contents
<% record_column = column -%> <% readonly = (@record.readonly? or not @record.authorized_for?(:crud_type => :update)) -%> <% crud_type = @record.new_record? ? :create : (readonly ? :read : :update) -%> <% show_actions = false -%> <% config = active_scaffold_config_for(@record.class) -%> <tr class="association-record <%= 'association-record-new' if @record.new_record? -%> <%= 'locked' if locked -%>"> <% config.subform.columns.each :for => @record.class, :crud_type => crud_type, :flatten => true do |column| %> <% next unless in_subform?(column, parent_record) show_actions = true column = column.clone column.form_ui ||= :select if column.association -%> <td> <% unless readonly and not @record.new_record? -%> <%= render :partial => form_partial_for_column(column), :locals => { :column => column, :scope => scope } -%> <% else -%> <p><%= get_column_value(@record, column) -%></p> <% end -%> </td> <% end -%> <% if show_actions -%> <td class="actions"> <%= link_to_function as_(:remove), '$(this).up(".association-record").remove()', { :class => "destroy" } if record_column.plural_association? and (@record.authorized_for?(:crud_type => :delete) or not [:destroy, :delete_all].include?(record_column.association.options[:dependent])) %> <% unless @record.new_record? %> <% options = active_scaffold_input_options(config.columns[@record.class.primary_key], scope) -%> <input type="hidden" name="<%= options[:name] -%>" id="<%= options[:id] -%>" value="<%= @record.id -%>" /> <% end -%> </td> <% end -%> </tr>
Version data entries
2 entries across 2 versions & 1 rubygems