VRFS-2475 - Disallow blank option for Time Signature, Status, Type, Licensor, Pro, Genre and Sales Region fields.
This commit is contained in:
parent
ab2b4fb5da
commit
3484f169ba
|
|
@ -5,16 +5,16 @@
|
|||
= f.input :name
|
||||
= f.input :description
|
||||
= f.input :bpm
|
||||
= f.input :time_signature, collection: JamRuby::JamTrack::TIME_SIGNATURES
|
||||
= f.input :status, collection: JamRuby::JamTrack::STATUS
|
||||
= f.input :recording_type, collection: JamRuby::JamTrack::RECORDING_TYPE
|
||||
= f.input :time_signature, collection: JamRuby::JamTrack::TIME_SIGNATURES, include_blank: false
|
||||
= f.input :status, collection: JamRuby::JamTrack::STATUS, include_blank: false
|
||||
= f.input :recording_type, collection: JamRuby::JamTrack::RECORDING_TYPE, include_blank: false
|
||||
= f.input :original_artist
|
||||
= f.input :songwriter
|
||||
= f.input :publisher
|
||||
= f.input :licensor, collection: JamRuby::JamTrackLicensor.all
|
||||
= f.input :pro, collection: JamRuby::JamTrack::PRO
|
||||
= f.input :genre, collection: JamRuby::Genre.all
|
||||
= f.input :sales_region, collection: JamRuby::JamTrack::SALES_REGION
|
||||
= f.input :licensor, collection: JamRuby::JamTrackLicensor.all, include_blank: false
|
||||
= f.input :pro, collection: JamRuby::JamTrack::PRO, include_blank: false
|
||||
= f.input :genre, collection: JamRuby::Genre.all, include_blank: false
|
||||
= f.input :sales_region, collection: JamRuby::JamTrack::SALES_REGION, include_blank: false
|
||||
= f.input :price
|
||||
= f.input :reproduction_royalty, :label => 'Reproduction Royalty'
|
||||
= f.input :public_performance_royalty, :label => 'Public Performance Royalty'
|
||||
|
|
|
|||
Loading…
Reference in New Issue