refactor(ui): enough space for button

This commit is contained in:
simon lehericey 2023-04-07 16:48:24 +02:00
parent b38470368b
commit 43b0eae3ee
2 changed files with 9 additions and 4 deletions

View file

@ -1,6 +1,11 @@
.groupe-instructeur { .groupe-instructeur {
.actions { .setup {
width: 200px;
text-align: center; text-align: center;
width: 100px;
}
.actions {
text-align: center;
width: 250px;
} }
} }

View file

@ -46,13 +46,13 @@
%tr %tr
// i18n-tasks-use t('.existing_groupe') // i18n-tasks-use t('.existing_groupe')
%th{ colspan: 2 }= t(".existing_groupe", count: groupes_instructeurs.total_count) %th{ colspan: 2 }= t(".existing_groupe", count: groupes_instructeurs.total_count)
%th %th.actions
= link_to "Exporter au format CSV", export_groupe_instructeurs_admin_procedure_groupe_instructeurs_path(procedure, format: :csv) = link_to "Exporter au format CSV", export_groupe_instructeurs_admin_procedure_groupe_instructeurs_path(procedure, format: :csv)
%tbody %tbody
- groupes_instructeurs.each do |group| - groupes_instructeurs.each do |group|
%tr %tr
%td= group.label %td= group.label
%td.actions= link_to t('.set_up'), admin_procedure_groupe_instructeur_path(procedure, group) %td.setup= link_to t('.set_up'), admin_procedure_groupe_instructeur_path(procedure, group)
- if group.can_delete? - if group.can_delete?
%td.actions %td.actions
= link_to admin_procedure_groupe_instructeur_path(procedure, group), { method: :delete, class: 'button', data: { confirm: t('.group_management.delete_confirmation', group_name: group.label) }} do = link_to admin_procedure_groupe_instructeur_path(procedure, group), { method: :delete, class: 'button', data: { confirm: t('.group_management.delete_confirmation', group_name: group.label) }} do