Use this utility to edit this group's information. Click the "Save" button when finished.
{{ Form::open(array('url' => url('/forms/music/large-ensemble/' . $info['form']->id . '/edit-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::hidden('index', $info['index']) }}
{{ Form::label('ap_id', 'School', array('style' => 'width: 100px;')) }}
{{ Form::select('ap_id', $info['ap_options'], $info['group']->id, 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, $info['group']->is_full_orchestra, 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', $info['group']->director, array('style' => 'width: 150px;', 'data-placeholder' => 'First Last')) }}
{{ Form::label('director_email', 'Director E-Mail', array('style' => 'width: 115px;')) }}
{{ Form::text('director_email', $info['group']->director_email, 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, $info['group']->is_required_selection, array('style' => 'vertical-align: middle;')) }}
@endif
{{ Form::label('time', 'Duration', array('style' => 'width: 100px;')) }}
{{ Form::text('time', $info['group']->time, array('style' => 'width: 75px;')) }}
List the actual performance duration using "MM:SS" format.
Scores
{{ Form::text('score_1', $info['group']->score_1, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px;')) }}
{{ Form::text('score_2', $info['group']->score_2, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px; margin-left: 50px;')) }}
{{ Form::text('score_3', $info['group']->score_3, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px; margin-left: 50px;')) }}
{{ Form::text('score_4', $info['group']->score_4, array('data-placeholder' => '##', 'data-numbers-only' => 'integer', 'maxlength' => '3', 'style' => 'width: 50px; margin-left: 50px;')) }}
{{ Form::text('score_sr', $info['group']->score_sr, 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', (property_exists($info['group'], 'notes')) ? $info['group']->notes : null, array('style' => 'width: 92%; height: 3em;')) }}
{{ Form::close() }}