mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
36 lines
1.3 KiB
Text
36 lines
1.3 KiB
Text
.row
|
|
.col-md-12
|
|
.page-header
|
|
%h1 Registration Period
|
|
%p.text-muted
|
|
The stretch of time where people can register to your conference
|
|
- if @registration_period
|
|
.row
|
|
.col-md-8
|
|
%dl.dl-horizontal
|
|
%dt
|
|
Start Date
|
|
%dd
|
|
= @registration_period.start_date
|
|
%dt
|
|
End Date
|
|
%dd
|
|
= @registration_period.end_date
|
|
.row
|
|
.col-md-12.text-right
|
|
- if @registration_period
|
|
- if can? :update, @registration_period
|
|
= link_to 'Edit', edit_admin_conference_registration_period_path, class: 'btn btn-primary'
|
|
- if can? :destroy, @registration_period
|
|
= link_to 'Delete', admin_conference_registration_period_path,
|
|
method: :delete, data: { confirm: 'Are you sure?' }, class: 'btn btn-danger'
|
|
- else
|
|
- unless @conference.tickets.for_registration.empty?
|
|
- if can? :create, @conference.build_registration_period
|
|
= link_to 'New Registration Period', new_admin_conference_registration_period_path, class: 'btn btn-primary'
|
|
- else
|
|
.h3.text-left
|
|
No Registration Tickets!
|
|
%small
|
|
= link_to 'Create registration tickets', new_admin_conference_ticket_path
|
|
before creating the registration period.
|