VRFS-2475 - Disallow blank option for Time Signature, Status, Type, Licensor, Pro, Genre and Sales Region fields.

This commit is contained in:
Steven Miers 2014-11-16 16:59:54 -06:00
parent ab2b4fb5da
commit 3484f169ba
1 changed files with 7 additions and 7 deletions

View File

@ -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'