Select Call type when creating; don't switch types.

This commit is contained in:
James Mason 2018-10-18 12:00:20 -07:00
parent e518431b8e
commit 75bf1380ba
4 changed files with 22 additions and 14 deletions

View file

@ -43,6 +43,14 @@
- if can? :new, @program.cfps.new
.row
.col-md-12.text-right
= link_to 'Create Call for Papers',
new_admin_conference_program_cfp_path(@conference),
class: 'btn btn-primary'
.btn-group
%button.btn.btn-primary.dropdown-toggle{ type: 'button',
data: { toggle: 'dropdown' } }
Add Call for...
%span.caret
%ul.dropdown-menu
- @program.remaining_cfp_types.each do |cfp_type|
%li
= link_to cfp_type.capitalize,
new_admin_conference_program_cfp_path(@conference,
cfp: { cfp_type: cfp_type })