2015-04-16 18:34:41 +03:00
|
|
|
- progress_status = event.progress_status
|
|
|
|
|
%ul.list-unstyled
|
|
|
|
|
%li{'class'=>class_for_todo(progress_status['registered'])}
|
|
|
|
|
%span{'class'=>icon_for_todo(progress_status['registered'])}
|
|
|
|
|
- if progress_status['registered']
|
2016-07-05 00:10:18 +05:30
|
|
|
= link_to 'Register to the conference', edit_conference_conference_registration_path(event.program.conference.short_title)
|
2015-04-16 18:34:41 +03:00
|
|
|
- else
|
2016-07-05 00:10:18 +05:30
|
|
|
= link_to 'Register to the conference', new_conference_conference_registration_path(event.program.conference.short_title)
|
2015-04-16 18:34:41 +03:00
|
|
|
%li{'class'=>class_for_todo(progress_status['biography'])}
|
|
|
|
|
%span{'class'=>icon_for_todo(progress_status['biography'])}
|
2016-03-05 02:54:09 +01:00
|
|
|
= link_to 'Fill out your biography', edit_user_path(event.submitter)
|
2015-04-16 18:34:41 +03:00
|
|
|
%li{'class'=>class_for_todo(progress_status['subtitle'])}
|
|
|
|
|
%span{'class'=>icon_for_todo(progress_status['subtitle'])}
|
2016-03-05 02:54:09 +01:00
|
|
|
= link_to 'Add a subtitle', edit_conference_program_proposal_path(event.program.conference.short_title, event)
|
2015-04-16 18:34:41 +03:00
|
|
|
%li{'class'=>class_for_todo(progress_status['commercials'])}
|
|
|
|
|
%span{'class'=>icon_for_todo(progress_status['commercials'])}
|
2016-03-05 02:54:09 +01:00
|
|
|
= link_to 'Add a commercial', edit_conference_program_proposal_path(event.program.conference.short_title, event, anchor: 'commercials-content')
|
2016-03-18 01:59:05 +05:30
|
|
|
- unless progress_status['track'].nil?
|
|
|
|
|
%li{'class'=>class_for_todo(progress_status['track'])}
|
|
|
|
|
%span{'class'=>icon_for_todo(progress_status['track'])}
|
|
|
|
|
= link_to 'Add a track', edit_conference_program_proposal_path(event.program.conference.short_title, event)
|
2015-04-16 18:34:41 +03:00
|
|
|
%li{'class'=>class_for_todo(progress_status['difficulty_level'])}
|
|
|
|
|
%span{'class'=>icon_for_todo(progress_status['difficulty_level'])}
|
2016-03-05 02:54:09 +01:00
|
|
|
= link_to 'Add a difficulty level', edit_conference_program_proposal_path(event.program.conference.short_title, event)
|