Fix sorting for archive
This commit is contained in:
parent
41311c74d0
commit
ec1605358b
|
@ -98,7 +98,7 @@
|
||||||
</tfoot>
|
</tfoot>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
||||||
<% @archive_file.archive_file_multiples.desc("id asc").each_with_index do |archive_file_multiple, i| %>
|
<% @archive_file.archive_file_multiples.asc(:_id).each_with_index do |archive_file_multiple, i| %>
|
||||||
<%= f.fields_for :archive_file_multiples, archive_file_multiple do |f| %>
|
<%= f.fields_for :archive_file_multiples, archive_file_multiple do |f| %>
|
||||||
<%= render :partial => 'form_file', :object => archive_file_multiple, :locals => {:f => f, :i => i} %>
|
<%= render :partial => 'form_file', :object => archive_file_multiple, :locals => {:f => f, :i => i} %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<div class="o-archives-list-item">
|
<div class="o-archives-list-item">
|
||||||
<% if !post.archive_file_multiples.blank? %>
|
<% if !post.archive_file_multiples.blank? %>
|
||||||
<ol>
|
<ol>
|
||||||
<% post.archive_file_multiples.desc("id asc").each do | afile | %>
|
<% post.archive_file_multiples.asc(:_id).each do | afile | %>
|
||||||
<% if afile.file.file and afile.choose_lang_display(I18n.locale.to_s) %>
|
<% if afile.file.file and afile.choose_lang_display(I18n.locale.to_s) %>
|
||||||
<li>
|
<li>
|
||||||
<%= link_to afile.file_title, afile.file.url, {:target => '_blank', :title => afile.file_title, :class => "o-archives-file"} %>
|
<%= link_to afile.file_title, afile.file.url, {:target => '_blank', :title => afile.file_title, :class => "o-archives-file"} %>
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
<div class="o-archives-list-item">
|
<div class="o-archives-list-item">
|
||||||
<% if !post.archive_file_multiples.blank? %>
|
<% if !post.archive_file_multiples.blank? %>
|
||||||
<ol>
|
<ol>
|
||||||
<% post.archive_file_multiples.desc("id asc").each do | afile | %>
|
<% post.archive_file_multiples.asc(:_id).each do | afile | %>
|
||||||
<% if afile.file.file and afile.choose_lang_display(I18n.locale.to_s) %>
|
<% if afile.file.file and afile.choose_lang_display(I18n.locale.to_s) %>
|
||||||
<li>
|
<li>
|
||||||
<%= link_to afile.file_title, afile.file.url, {:target => '_blank', :title => afile.file_title, :class => "o-archives-file"} %>
|
<%= link_to afile.file_title, afile.file.url, {:target => '_blank', :title => afile.file_title, :class => "o-archives-file"} %>
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
|
|
||||||
<% if !post.archive_file_multiples.blank? %>
|
<% if !post.archive_file_multiples.blank? %>
|
||||||
<ol>
|
<ol>
|
||||||
<% post.archive_file_multiples.desc("_id asc").each do | afile | %>
|
<% post.archive_file_multiples.asc(:_id).each do | afile | %>
|
||||||
<% if afile.file.file and afile.choose_lang_display(I18n.locale.to_s) %>
|
<% if afile.file.file and afile.choose_lang_display(I18n.locale.to_s) %>
|
||||||
<li>
|
<li>
|
||||||
<%= link_to afile.file_title, afile.file.url, {:target => '_blank', :title => afile.file_title, :class => "o-archives-file"} %>
|
<%= link_to afile.file_title, afile.file.url, {:target => '_blank', :title => afile.file_title, :class => "o-archives-file"} %>
|
||||||
|
|
Reference in New Issue