mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
26 lines
987 B
Text
26 lines
987 B
Text
%h1 Lodgings
|
|
- if @venue.lodgings.any?
|
|
.row
|
|
.col-md-12
|
|
%table.table
|
|
%thead
|
|
%th #
|
|
%th Name
|
|
%th Edit
|
|
%th Delete
|
|
%tbody
|
|
- @venue.lodgings.each_with_index do |lodging, index|
|
|
%tr
|
|
%td
|
|
= index + 1
|
|
%td
|
|
= link_to lodging.name, admin_conference_lodging_path(@conference.short_title, lodging.id)
|
|
%td
|
|
= link_to 'Edit', edit_admin_conference_lodging_path(@conference.short_title, lodging.id),
|
|
method: :get, class: 'btn btn-primary'
|
|
%td
|
|
= link_to 'Delete', admin_conference_lodging_path(@conference.short_title, lodging.id),
|
|
method: :delete, class: 'btn btn-danger', data: { confirm: "Do you really want to delete the lodging #{lodging.name}?" }
|
|
|
|
= link_to 'Add Lodging', new_admin_conference_lodging_path(@conference.short_title), class: 'btn btn-success'
|
|
|