27 lines
698 B
Plaintext
27 lines
698 B
Plaintext
|
|
.right= link_to 'Ajouter un timeline_history', new_admin_timeline_history_path(), :class => "btn btn-primary"
|
|
|
|
%h1 Liste des Timelines
|
|
|
|
|
|
|
|
%table.stat_table.table.table-striped
|
|
%tr
|
|
%th Nom
|
|
%th Url
|
|
%th Nbr sign.
|
|
%th
|
|
|
|
|
|
|
|
- @timeline_histories.each do |timeline_history|
|
|
|
|
%tr
|
|
%td= timeline_history.title
|
|
|
|
%td
|
|
= link_to i(:"trash-o"), [:admin, timeline_history], method: :delete, data: { confirm: 'Voulez-vous vraiment supprimer cette timeline_history ? Les signatures seront également supprimées.' }
|
|
= link_to i(:pencil), edit_admin_timeline_history_path(timeline_history)
|
|
= link_to i(:info), [:admin, timeline_history]
|
|
|