Use this utility to create a new group to add to your form. Click the "Add" button when finished.
{{ Form::open(array('url' => url('/forms/music/large-ensemble/' . $info['form']->id . '/add-group'),
'method' => 'POST',
'style' => 'font-size: 10pt;')) }}
{{ Form::hidden('redirect', url('/forms/music/large-ensemble/' . $info['form']->id . '')) }}
{{ Form::hidden('form_id', $info['form']->id) }}
{{ Form::label('ap_id', 'School', array('style' => 'width: 100px;')) }}
{{ Form::select('ap_id', $info['ap_options'], null, array('style' => 'width: 300px;')) }}
Only schools offering {{ strtolower(Helpers::getActivityName($info['form']->activity)) }} are included on this list. If a school is not listed, contact
@if (Helpers::strEqual($info['form']->activity, array('CHO')))
Kelly Foster, OSAA Associate Director, at (503) 682-6722 x233.
@elseif (Helpers::strEqual($info['form']->activity, array('BND', 'ORC')))
Cindy Simmons, OSAA Assistant Executive Director, at (503) 682-6722 x227.
@else
OSAA Support, (503) 682-6722 x228.
@endif
@if (Helpers::strEqual($info['form']->activity, array('ORC')))
{{ Form::label('full_orchestra', 'Full Orchestra', array('style' => 'width: 100px;')) }}
{{ Form::checkbox('full_orchestra', true, false, array('style' => 'vertical-align: middle;')) }}
Is this group a full orchestra? Leave unchecked for string orchestras.
@endif
{{ Form::label('director', 'Director Name', array('style' => 'width: 100px;')) }}
{{ Form::text('director', null, array('style' => 'width: 150px;', 'data-placeholder' => 'First Last')) }}
{{ Form::label('director_email', 'Director E-Mail', array('style' => 'width: 115px;')) }}
{{ Form::text('director_email', null, array('style' => 'width: 200px;', 'data-placeholder' => 'email@domain.com')) }}
@if (Helpers::strEqual($info['form']->activity, array('ORC')))
{{ Form::hidden('required_selection', true) }}
@else
{{ Form::label('required_selection', 'Required/Approved Selection Confirmed', array('style' => 'width: auto;')) }}
{{ Form::checkbox('required_selection', true, false, array('style' => 'vertical-align: middle;')) }}
@endif
{{ Form::label('time', 'Duration', array('style' => 'width: 100px;')) }}
{{ Form::text('time', null, array('style' => 'width: 75px;')) }}
List the actual performance duration using "MM:SS" format.
Scores
{{ Form::text('score_1', null, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px;')) }}
{{ Form::text('score_2', null, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px; margin-left: 50px;')) }}
{{ Form::text('score_3', null, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px; margin-left: 50px;')) }}
{{ Form::text('score_4', null, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px; margin-left: 50px;')) }}
{{ Form::text('score_sr', null, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px; margin-left: 50px;')) }}
Adjudicator #1 Score
Adjudicator #2 Score
Adjudicator #3 Score
Adjudicator #4 Score
Sight-Reading Score
Notes
{{ Form::textarea('notes', null, array('style' => 'width: 92%; height: 3em;')) }}
{{ Form::close() }}