mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-15 12:44:03 +00:00
Implements feature test for proposal workflog
- submitt proposal - accept proposal - confirm proposal
This commit is contained in:
parent
147310b8b7
commit
656ded9d96
6 changed files with 73 additions and 19 deletions
|
|
@ -108,32 +108,32 @@
|
|||
- if event.transition_possible? :accept
|
||||
%li= link_to 'Accept event (no email)',
|
||||
update_state_admin_conference_event_path(@conference.short_title, event, transition: :accept, send_mail: false),
|
||||
method: :patch, hint: 'Accept this event without sending an automated email.'
|
||||
method: :patch, hint: 'Accept this event without sending an automated email.', id: 'accept_event'
|
||||
%li= link_to 'Accept event (WITH email)',
|
||||
update_state_admin_conference_event_path(@conference.short_title, event, transition: :accept, send_mail: true),
|
||||
method: :patch, hint: 'Accept this event and send an automated email.'
|
||||
method: :patch, hint: 'Accept this event and send an automated email.', id: 'accept_event_mail'
|
||||
- if event.transition_possible? :reject
|
||||
%li= link_to 'Reject event (no email)',
|
||||
update_state_admin_conference_event_path(@conference.short_title, event, transition: :reject, send_mail: false),
|
||||
method: :patch, confirm: 'Are you sure?',
|
||||
hint: 'Reject this event without sending an automated email.'
|
||||
hint: 'Reject this event without sending an automated email.', id: 'reject_event'
|
||||
%li= link_to 'Reject event (WITH email)',
|
||||
update_state_admin_conference_event_path(@conference.short_title, event, transition: :reject, send_mail: true),
|
||||
method: :patch, confirm: 'Are you sure?',
|
||||
hint: 'Reject this event and send an automated email.'
|
||||
hint: 'Reject this event and send an automated email.', id: 'reject_event_mail'
|
||||
- if event.transition_possible? :start_review
|
||||
%li= link_to 'Start review',
|
||||
update_state_admin_conference_event_path(@conference.short_title, event, transition: :start_review),
|
||||
method: :patch
|
||||
method: :patch, id: 'review_event'
|
||||
- if event.transition_possible? :confirm
|
||||
%li= link_to 'Confirm event',
|
||||
update_state_admin_conference_event_path(@conference.short_title, event, transition: :confirm),
|
||||
method: :patch,
|
||||
method: :patch, id: 'confirm_event',
|
||||
hint: 'Confirm that the speaker(s) will be present and that the event will actually take place.'
|
||||
- if event.transition_possible? :cancel
|
||||
%li= link_to 'Cancel event',
|
||||
update_state_admin_conference_event_path(@conference.short_title, event, :transition => :cancel),
|
||||
method: :patch,
|
||||
method: :patch, id: 'cancel_event',
|
||||
hint: 'Mark this event as cancelled. Usually this means that the speakers had to cancel their appearance.'
|
||||
|
||||
:javascript
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue