d531b02bc5
So that /spec/controllers/api/v1/
dossiers_controller_spec.rb#L163-L179 (on commit
8852431
for example) does not randomly fail due
to unordered types_de_piece_justificative
7 lines
499 B
Text
7 lines
499 B
Text
= form_for [:admin, @procedure], url: admin_procedure_pieces_justificatives_path(@procedure), remote: true do |f|
|
|
#liste_piece_justificative
|
|
= render partial: 'fields', locals: { types_de_piece_justificative: @procedure.types_de_piece_justificative.decorate, f: f }
|
|
= f.submit "Enregistrer", class: 'btn btn-success', id: :save
|
|
%hr
|
|
#new_type_de_piece_justificative
|
|
= render partial: 'fields', locals: { types_de_piece_justificative: TypeDePieceJustificative.new.decorate, f: f }
|