').appendTo('body')
.attr('data-processing', 1)
.css('width', '225px')
.css('height', '170px')
.css('text-align', 'center')
.css('padding', '0.5em')
.position({my : "center center", at : "center center", of : window})
.addClass('ui-dialog ui-widget ui-widget-content ui-corner-all ui-front')
.html('
Removing Judge...

Please wait, this may take a while to process...
');
var data = {
'form_id' : form_id,
'index' : index
};
// Remove the qualifier
var jqxhr = $.ajax(
{
type : 'POST',
url : '{{ url('/forms/registration/spe') }}/' + form_id + '/delete-judge',
data : data,
dataType : 'html'
})
.done(function (data)
{
//$('[data-processing]').remove();
//location.reload();
window.location.href = '{{ url('/forms/registration/spe') }}?league={{ urlencode($information['league']->slug) }}#judges';
location.reload();
})
.fail(function (jqXHR, status, error)
{
var response = jqXHR.responseText;
var errorData = $.parseJSON(response);
//console.log(errorData);
alert("There was an error removing this judge.\n\n" + errorData.error.message + "\n\nPlease try again.");
$('[data-processing]').remove();
// Close the dialog box
$(dialog_object).dialog("close");
});
}
}
],
open : function ()
{
var dialog_object = $(this);
var html = '
';
html += '';
html += 'Are you sure you want to delete this highlighted judge from your form?';
html += '
';
html += 'Once you delete this row, the judges\'s information will be removed from this form. This cannot be undone.';
html += '
';
dialog_object.html(html);
$('.ui-dialog-buttonpane').css('padding', '0 0.5em').css('font-size', '9pt');
$('.ui-dialog-buttonpane .ui-dialog-buttonset').css('width', '100%');
},
close : function ()
{
// Unhighlight the row
row.removeClass('hightlight');
var dialog_object = $(this);
$(dialog_object).remove();
}
});
});
@endif
@stop
@section('page_functions')
@if (!is_null($information['league']))
Help
Back
@else
@if (Auth::check() and Auth::user()->isOsaaUser())
Entries
@endif
Help
Close
@endif
@stop
@section('main_content')
{{-- Success Bar --}}
@if (Session::has('success'))
{{ Session::get('success') }}
@endif
{{-- Action Area --}}
@if (!is_null($information['submission']))
Form Actions
League Form ID = {{ $information['submission']->id }}
@foreach ($information['action_items'] as $action => $item)
@if ($item['enabled'])
{{ $item['text'] }}
@endif
@endforeach
@if ($information['submission']->data->complete)
 }})
Complete
@else
 }})
Incomplete
@endif
Last updated at
{{ date('g:i a m/d/Y', strtotime($information['submission']->updated_at)) }}
Form created at {{ date('g:i a m/d/Y', strtotime($information['submission']->created_at)) }}
@endif
{{-- Past Due --}}
@if ($information['is_past_due'])
This form was due by {{ date('g:i A l, F j, Y', strtotime($information['activity_form']->due_at)) }} and is now past the deadline. Please submit your entries now before the form closes and becomes unavailable.
@endif
{{-- Need to select a league --}}
@if (is_null($information['league']))
Speech Special District Results
This form is for District Directors to submit special district contest results identifying state qualifying participants.
Select Your Special District
{{ Form::open(array('url' => url('/forms/registration/' . strtolower($information['activity']->slug)),
'method' => 'get',
'id' => 'select_league_form')) }}
Special District
{{ Form::select('league',
$information['leagues_list'],
null,
array('style' => 'margin-top: 0.5em;')) }}
Key Code/Password
{{ Form::text('code',
(Auth::check() and Auth::user()->isOsaaUser()) ? 'STATEREGISTRATION' : null,
array('style' => 'margin-top: 0.5em; width: 200px;')) }}
{{ Form::submit('Next', array('class' => 'select_league_button',
'style' => 'font-size: 9pt; margin-top: 0.25em;')) }}
{{ Form::close() }}
Note to District Directors
Use this form to submit your district's results. You will not be able to make changes once you submit this form. To complete this form, you will need to supply the following information.
- Your contact information (name, e-mail address, phone number)
- Information about the district contest (date, location)
- State qualifiers' information (name, school, events)
- Judges for state (name, contact information, availability)
{{-- A league is selected --}}
@elseif (!is_null($information['league']))
Speech District {{ $information['league']->name }} State Qualifiers
{{-- Work in Progress --}}
@if (!$information['submission']->data->complete)
 }})
This form has not yet been submitted to the OSAA by the District Director.
@endif
Instructions for District Directors
All entries must be entered with proper capitalization (e.g. "Title Case" not "UPPER CASE"). Enter names on this form in "First Last" name format. Do not use all upper-case letters. Be sure to spell names correctly. Proofread this form before submitting results. To list qualifiers for each speech event, you must first provide the number of speakers that participated in that event. Depending on the number of competitors, a number of eligible state entry slots will become available for input. If the event qualifier includes a speech title, you must provide a title in that field. If the title of the speech is required and not known, enter in "TBD".
Required fields are indicated with a red asterisk, *.
Fields with a blue asterisk, *, are required if a qualifier is listed.
Note: All entries must be submitted by {{ date('g:i A l, F j, Y', strtotime($information['activity_form']->due_at)) }} using this online form.
Schools in Speech District {{ $information['league']->name }}
| School |
{{-- Activities Director | --}}
Speech Coach |
@foreach ($information['school_list'] as $item)
| {{ $item->school }} |
{{-- {{ (!is_null($item->admin)) ? $item->admin->getDisplayName() . ' (' . $item->admin->email . ')' : '- -' }} | --}}
{{ (!is_null($item->coach)) ? $item->coach->getDisplayName() . ' (' . $item->coach->email . ')' : '- -' }} |
@endforeach
@if (Session::has('errors'))
@foreach ($errors->all() as $error){{ $error }} @endforeach
@endif
{{ Form::open(array('url' => url('/forms/submit'),
'method' => 'post',
'class' => 'registration_form')) }}
{{ Form::hidden('form', 'REGISTRATION') }}
{{ Form::hidden('activity', $information['activity']->slug) }}
{{ Form::hidden('league', $information['league']->slug) }}
District Director
{{ Form::label('director_name', 'Name') }}
{{ Form::text('director_name',
$information['submission']->data->director->name,
array('data-autosave' => true,
'data-field' => 'data->director->name',
'data-type' => 'STRING',
'data-original' => $information['submission']->data->director->name,
'data-required' => true,
'style' => 'width: 150px;')) }}
(First Last)
{{ Form::label('director_email', 'E-Mail') }}
{{ Form::text('director_email',
$information['submission']->data->director->email,
array('data-autosave' => true,
'data-field' => 'data->director->email',
'data-type' => 'STRING',
'data-original' => $information['submission']->data->director->email,
'data-required' => true,
'style' => 'width: 200px;')) }}
{{ Form::label('director_school', 'School') }}
{{ Form::text('director_school',
$information['submission']->data->director->school,
array('data-autosave' => true,
'data-field' => 'data->director->school',
'data-type' => 'STRING',
'data-original' => $information['submission']->data->director->school,
'data-autocomplete' => true,
'data-source' => url('/forms/registration/spe/lookup/school'),
'style' => 'width: 300px;')) }}
(What school are you associated with?)
{{ Form::label('director_mobile', 'Cell Phone') }}
{{ Form::text('director_mobile',
$information['submission']->data->director->cell_phone,
array('data-autosave' => true,
'data-field' => 'data->director->cell_phone',
'data-type' => 'PHONE',
'data-original' => $information['submission']->data->director->cell_phone,
'data-required' => true,
'data-format' => 'phone',
'style' => 'width: 100px;')) }}
{{ Form::label('director_home', 'Home Phone') }}
{{ Form::text('director_home',
$information['submission']->data->director->home_phone,
array('data-autosave' => true,
'data-field' => 'data->director->home_phone',
'data-type' => 'PHONE',
'data-original' => $information['submission']->data->director->home_phone,
'data-format' => 'phone',
'style' => 'width: 100px;')) }}
Your contact information will not be published. This information will be visible to OSAA staff only in order to contact you if any question arises.
District Tournament Information
{{ Form::label('event_date', 'Date') }}
{{ Form::text('event_date',
(is_null($information['submission']->data->event->date)) ? null : date('m/d/Y', strtotime($information['submission']->data->event->date)),
array('data-autosave' => true,
'data-field' => 'data->event->date',
'data-type' => 'DATE',
'data-original' => (is_null($information['submission']->data->event->date)) ? null : date('m/d/Y', strtotime($information['submission']->data->event->date)),
'data-required' => true,
'data-format' => 'date-picker',
'style' => 'width: 80px;')) }}
(When was the last day of the event?)
{{ Form::label('event_location', 'Location') }}
{{ Form::text('event_location',
$information['submission']->data->event->location,
array('data-autosave' => true,
'data-field' => 'data->event->location',
'data-type' => 'STRING',
'data-original' => $information['submission']->data->event->location,
'data-autocomplete' => true,
'data-source' => url('/forms/registration/spe/lookup/location'),
'style' => 'width: 300px;')) }}
(Where was the event held?)
{{ Form::label('event_notes', 'Notes', array('class' => 'auto_width')) }}
(Notes / Comments)
{{ Form::textarea('event_notes',
$information['submission']->data->event->notes,
array('data-autosave' => true,
'data-field' => 'data->event->notes',
'data-type' => 'STRING',
'data-original' => $information['submission']->data->event->notes,
'style' => 'width: 100%; height: 5em; font-family: Arial,Helvetica,sans-serif; font-size: 11pt;')) }}
@if (count($information['submission']->data->entries->individual) > 0)
Individual Events
To list qualifiers for each speech event, you must first provide the number of speakers that participated in that event. Depending on the number of competitors, a number of eligible state entry slots will become available for input.
@foreach ($information['submission']->data->entries->individual as $index => $entry)
{{ $event->name }}
{{ Form::label($entry->event . '_count', 'Number of Speakers', array('style' => 'width: 175px;')) }}
{{ Form::text($entry->event . '_count',
$entry->count,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->count',
'data-type' => 'INT',
'data-original' => $entry->count,
'data-required' => true,
'data-format' => 'numbers',
'data-reload' => true,
'maxlength' => 3,
'style' => 'width: 30px;')) }}
(This is the number of {{ $event->name }} {{ strtolower(str_plural($event->label)) }} that competed in this district tournament.)
Qualifiers ({{ $entry->allowed }} allowed)
@foreach ($entry->qualifiers as $sub_index => $qualifier)
disabled) ? 'data-qualifier-disabled="true"' : null }}>
{{ ($sub_index + 1) }}.
{{ Form::label($entry->event . '_' . $event->type . '_' . $sub_index . '_name', ucfirst(strtolower((($event->multiple) ? str_plural($event->label) : $event->label))), array('class' => 'auto_width')) }}
{{ ($event->multiple) ? '(First Last / First Last)' : '(First Last)' }}
{{ Form::text($entry->event . '_' . $event->type . '_' . $sub_index . '_name',
$qualifier->name,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->qualifiers[' . $sub_index . ']->name',
'data-type' => 'STRING',
'data-required' => 'special',
'data-original' => $qualifier->name,
'style' => 'width: 200px;')) }}
{{ Form::label($entry->event . '_' . $event->type . '_' . $sub_index . '_school', 'School', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_' . $sub_index . '_school',
$information['school_options'],
$qualifier->school,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->qualifiers[' . $sub_index . ']->school',
'data-type' => 'STRING',
'data-required' => 'special',
'data-original' => $qualifier->school,
'style' => 'width: 175px;')) }}
@if (!$event->multiple)
{{ Form::label($entry->event . '_' . $event->type . '_' . $sub_index . '_second_event', '2nd Individual Event', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_' . $sub_index . '_second_event',
$information['other_event_options'],
$qualifier->other_event,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->qualifiers[' . $sub_index . ']->other_event',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event,
'style' => 'width: 185px;')) }}
@else
{{ Form::label($entry->event . '_' . $event->type . '_' . $sub_index . '_second_event', '1st Person 2nd IE', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_' . $sub_index . '_second_event',
$information['other_event_options'],
$qualifier->other_event,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->qualifiers[' . $sub_index . ']->other_event',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event,
'style' => 'width: 185px;')) }}
{{ Form::label($entry->event . '_' . $event->type . '_' . $sub_index . '_second_event_b', '2nd Person 2nd IE', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_' . $sub_index . '_second_event_b',
$information['other_event_options'],
$qualifier->other_event_b,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->qualifiers[' . $sub_index . ']->other_event_b',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event_b,
'style' => 'width: 185px;')) }}
@endif
@endforeach
@if (!$qualifier->disabled and $entry->allowed > 0)
ALT
{{ Form::label($entry->event . '_' . $event->type . '_ALT_name', ucfirst(strtolower((($event->multiple) ? str_plural($event->label) : $event->label))), array('class' => 'auto_width')) }}
{{ ($event->multiple) ? '(First Last / First Last)' : '(First Last)' }}
{{ Form::text($entry->event . '_' . $event->type . '_ALT_name',
$qualifier->name,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->alternate->name',
'data-type' => 'STRING',
'data-required' => 'special',
'data-original' => $qualifier->name,
'style' => 'width: 200px;')) }}
{{ Form::label($entry->event . '_' . $event->type . '_ALT_school', 'School', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_ALT_school',
$information['school_options'],
$qualifier->school,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->alternate->school',
'data-type' => 'STRING',
'data-required' => 'special',
'data-original' => $qualifier->school,
'style' => 'width: 175px;')) }}
@if (!$event->multiple)
{{ Form::label($entry->event . '_' . $event->type . '_ALT_second_event', '2nd Individual Event', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_ALT_second_event',
$information['other_event_options'],
$qualifier->other_event,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->alternate->other_event',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event,
'style' => 'width: 185px;')) }}
@else
{{ Form::label($entry->event . '_' . $event->type . '_ALT_second_event', '1st Person 2nd IE', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_ALT_second_event',
$information['other_event_options'],
$qualifier->other_event,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->alternate->other_event',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event,
'style' => 'width: 185px;')) }}
{{ Form::label($entry->event . '_' . $event->type . '_ALT_second_event_b', '2nd Person 2nd IE', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_ALT_second_event_b',
$information['other_event_options'],
$qualifier->other_event_b,
array('data-autosave' => true,
'data-field' => 'data->entries->individual[' . $index . ']->alternate->other_event_b',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event_b,
'style' => 'width: 185px;')) }}
@endif
@endif
@endforeach
@foreach ($information['submission']->data->entries->team as $index => $entry)
{{ $event->name }}
@if (!property_exists($event, 'guarantee'))
{{ Form::label($entry->event . '_count', 'Number of Teams', array('style' => 'width: 175px;')) }}
{{ Form::text($entry->event . '_count',
$entry->count,
array('data-autosave' => true,
'data-field' => 'data->entries->team[' . $index . ']->count',
'data-type' => 'INT',
'data-original' => $entry->count,
'data-required' => true,
'data-format' => 'numbers',
'data-reload' => true,
'maxlength' => 3,
'style' => 'width: 30px;')) }}
(This is the number of {{ $event->name }} teams that competed in this district tournament.)
@elseif (property_exists($event, 'instructions'))
{{ $event->instructions }}
@endif
Qualifiers ({{ $entry->allowed }} allowed)
@foreach ($entry->qualifiers as $sub_index => $qualifier)
disabled) ? 'data-qualifier-disabled="true"' : null }}>
{{ ($sub_index + 1) }}.
{{ Form::label($entry->event . '_' . $event->type . '_' . $sub_index . '_name', ucfirst(strtolower((($event->multiple) ? str_plural($event->label) : $event->label))), array('class' => 'auto_width')) }}
{{ ($event->multiple) ? '(First Last / First Last)' : '(First Last)' }}
{{ Form::text($entry->event . '_' . $event->type . '_' . $sub_index . '_name',
$qualifier->name,
array('data-autosave' => true,
'data-field' => 'data->entries->team[' . $index . ']->qualifiers[' . $sub_index . ']->name',
'data-type' => 'STRING',
'data-required' => 'special',
'data-original' => $qualifier->name,
'style' => 'width: 200px;')) }}
{{ Form::label($entry->event . '_' . $event->type . '_' . $sub_index . '_school', 'School', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_' . $sub_index . '_school',
$information['school_options'],
$qualifier->school,
array('data-autosave' => true,
'data-field' => 'data->entries->team[' . $index . ']->qualifiers[' . $sub_index . ']->school',
'data-type' => 'STRING',
'data-required' => 'special',
'data-original' => $qualifier->school,
'style' => 'width: 175px;')) }}
@endforeach
@if (!$qualifier->disabled and $entry->allowed > 0)
ALT
{{ Form::label($entry->event . '_' . $event->type . '_ALT_name', ucfirst(strtolower((($event->multiple) ? str_plural($event->label) : $event->label))), array('class' => 'auto_width')) }}
{{ ($event->multiple) ? '(First Last / First Last)' : '(First Last)' }}
{{ Form::text($entry->event . '_' . $event->type . '_ALT_name',
$qualifier->name,
array('data-autosave' => true,
'data-field' => 'data->entries->team[' . $index . ']->alternate->name',
'data-type' => 'STRING',
'data-required' => 'special',
'data-original' => $qualifier->name,
'style' => 'width: 200px;')) }}
{{ Form::label($entry->event . '_' . $event->type . '_ALT_school', 'School', array('class' => 'auto_width')) }}
{{ Form::select($entry->event . '_' . $event->type . '_ALT_school',
$information['school_options'],
$qualifier->school,
array('data-autosave' => true,
'data-field' => 'data->entries->team[' . $index . ']->alternate->school',
'data-type' => 'STRING',
'data-required' => 'special',
'data-original' => $qualifier->school,
'style' => 'width: 175px;')) }}
@endif
Proven Excellence Qualifiers
No more than two qualifiers per school.
@if (count($information['submission']->data->entries->additional) > 0)
To add an additional proven excellence qualifier, click the button to the left to insert a new row.
To remove a qualifier, click the red X icon in the corresponding qualifier's row.
@else
To add a proven excellence qualifier, click the button to the left.
@endif
@if (count($information['submission']->data->entries->additional) > 0)
@foreach ($information['submission']->data->entries->additional as $index => $qualifier)
{{ Form::label('ADD_' . $index . '_event', 'Event', array('class' => 'auto_width')) }}
{{ Form::select('ADD_' . $index . '_event',
$information['event_options'],
$qualifier->event,
array('data-autosave' => true,
'data-field' => 'data->entries->additional[' . $index . ']->event',
'data-type' => 'STRING',
'data-original' => $qualifier->event,
'data-reload' => true,
'data-required' => true,
'style' => 'width: 200px;')) }}
@if (!is_null($event))
{{ Form::label('ADD_' . $index . '_name', ucfirst(strtolower((($event->multiple) ? str_plural($event->label) : $event->label))), array('class' => 'auto_width')) }}
{{ ($event->multiple) ? ' (First Last / First Last)' : ' (First Last)' }}
{{ Form::text('ADD_' . $index . '_name',
$qualifier->name,
array('data-autosave' => true,
'data-field' => 'data->entries->additional[' . $index . ']->name',
'data-type' => 'STRING',
'data-required' => true,
'data-original' => $qualifier->name,
'style' => 'width: 205px;')) }}
{{ Form::label('ADD_' . $index . '_school', 'School', array('class' => 'auto_width')) }}
{{ Form::select('ADD_' . $index . '_school',
$information['school_options'],
$qualifier->school,
array('data-autosave' => true,
'data-field' => 'data->entries->additional[' . $index . ']->school',
'data-type' => 'STRING',
'data-required' => true,
'data-original' => $qualifier->school,
'style' => 'width: 150px;')) }}
@if (Helpers::strEqual($event->type, 'INDIVIDUAL'))
@if (!$event->multiple)
{{ Form::label('ADD_' . $index . '_second_event', '2nd Individual Event', array('class' => 'auto_width')) }}
{{ Form::select('ADD_' . $index . '_second_event',
$information['other_event_options'],
$qualifier->other_event,
array('data-autosave' => true,
'data-field' => 'data->entries->additional[' . $index . ']->other_event',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event,
'style' => 'width: 185px;')) }}
@else
{{ Form::label('ADD_' . $index . '_second_event', '1st Person 2nd IE', array('class' => 'auto_width')) }}
{{ Form::select('ADD_' . $index . '_second_event',
$information['other_event_options'],
$qualifier->other_event,
array('data-autosave' => true,
'data-field' => 'data->entries->additional[' . $index . ']->other_event',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event,
'style' => 'width: 185px;')) }}
{{ Form::label('ADD_' . $index . '_second_event_b', '2nd Person 2nd IE', array('class' => 'auto_width')) }}
{{ Form::select('ADD_' . $index . '_second_event_b',
$information['other_event_options'],
$qualifier->other_event_b,
array('data-autosave' => true,
'data-field' => 'data->entries->additional[' . $index . ']->other_event_b',
'data-type' => 'STRING',
'data-original' => $qualifier->other_event_b,
'style' => 'width: 185px;')) }}
@endif
@endif
@else
(Begin by selecting this proven excellence qualifier's event.)
@endif
@endforeach
@else
You have not added any proven excellence qualifiers. Click the Add Another Proven Excellence Qualifier button to insert a row which you can provide the information for a new proven excellence qualifier.
@endif
Judges
Every participating school must provide at least one judge to cover any entries in debate and/or individual events. That judge may be the coach. If a coach does not fulfill assigned judging obligations without prior clearance from the Judging Committee, the school may be subject to censure and fine by the OSAA.
@if (count($information['submission']->data->judges) > 0)
@foreach ($information['submission']->data->judges as $index => $judge)
{{ Form::label('JUDGE_' . $index . '_name', 'Name', array('class' => 'auto_width')) }}
(First Last)
{{ Form::text('JUDGE_' . $index . '_name',
$judge->name,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->name',
'data-type' => 'STRING',
'data-required' => true,
'data-original' => $judge->name,
'style' => 'width: 150px;')) }}
{{ Form::label('JUDGE_' . $index . '_school', 'School', array('class' => 'auto_width')) }}
{{ Form::select('JUDGE_' . $index . '_school',
$information['school_options'],
$judge->school,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->school',
'data-type' => 'STRING',
'data-original' => $judge->school,
'style' => 'width: 175px;')) }}
{{ Form::label('JUDGE_' . $index . '_cell_phone', 'Cell Phone', array('class' => 'auto_width')) }}
{{ Form::text('JUDGE_' . $index . '_cell_phone',
$judge->cell_phone,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->cell_phone',
'data-type' => 'PHONE',
'data-original' => $judge->cell_phone,
'data-format' => 'phone',
'style' => 'width: 100px;')) }}
{{ Form::label('JUDGE_' . $index . '_type', 'Type', array('class' => 'auto_width')) }}
{{ Form::select('JUDGE_' . $index . '_type',
array('COACH' => 'Coach', 'VOLUNTEER' => 'Volunteer', 'PAID' => 'Paid Judge'),
$judge->type,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->type',
'data-type' => 'STRING',
'data-original' => $judge->type,
'style' => 'width: 100px;')) }}
Days Available:
{{ Form::label('JUDGE_' . $index . '_availability_day_r', 'Thurs.', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_day_r',
true,
$judge->availability->days->thursday,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->days->thursday',
'data-type' => 'BOOL',
'data-original' => $judge->availability->days->thursday,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{ Form::label('JUDGE_' . $index . '_availability_day_f', 'Fri.', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_day_f',
true,
$judge->availability->days->friday,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->days->friday',
'data-type' => 'BOOL',
'data-original' => $judge->availability->days->friday,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{ Form::label('JUDGE_' . $index . '_availability_day_s', 'Sat.', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_day_s',
true,
$judge->availability->days->saturday,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->days->saturday',
'data-type' => 'BOOL',
'data-original' => $judge->availability->days->saturday,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{--
Events Available:
{{ Form::label('JUDGE_' . $index . '_availability_events_cxl', 'CXL', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_events_cxl',
true,
$judge->availability->events->CXL,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->events->CXL',
'data-type' => 'BOOL',
'data-original' => $judge->availability->events->CXL,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{ Form::label('JUDGE_' . $index . '_availability_events_par', 'PAR', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_events_par',
true,
$judge->availability->events->PAR,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->events->PAR',
'data-type' => 'BOOL',
'data-original' => $judge->availability->events->PAR,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{ Form::label('JUDGE_' . $index . '_availability_events_pfd', 'PFD', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_events_pfd',
true,
$judge->availability->events->PFD,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->events->PFD',
'data-type' => 'BOOL',
'data-original' => $judge->availability->events->PFD,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{ Form::label('JUDGE_' . $index . '_availability_events_ldv', 'LDV', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_events_ldv',
true,
$judge->availability->events->LDV,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->events->LDV',
'data-type' => 'BOOL',
'data-original' => $judge->availability->events->LDV,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{ Form::label('JUDGE_' . $index . '_availability_events_cong', 'CONG', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_events_cong',
true,
$judge->availability->events->CONG,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->events->CONG',
'data-type' => 'BOOL',
'data-original' => $judge->availability->events->CONG,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{ Form::label('JUDGE_' . $index . '_availability_events_ie', 'Any Individual Event', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_events_ie',
true,
$judge->availability->events->IE,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->events->IE',
'data-type' => 'BOOL',
'data-original' => $judge->availability->events->IE,
'style' => 'margin-left: 4px; vertical-align: middle;')) }}
{{ Form::label('JUDGE_' . $index . '_availability_events_all', 'All Events', array('class' => 'auto_width', 'style' => 'font-weight: normal; float: none;')) }}
{{ Form::checkbox('JUDGE_' . $index . '_availability_events_all',
true,
$judge->availability->events->ALL,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->availability->events->ALL',
'data-type' => 'BOOL',
'data-original' => $judge->availability->events->ALL,
'style' => 'margin-left: 4px; vertical-align: middle;')) }} --}}
{{ Form::label('JUDGE_' . $index . '_notes', 'Notes', array('class' => 'auto_width', 'style' => 'margin-right: 10px;')) }}
{{ Form::textarea('JUDGE_' . $index . '_notes',
$judge->notes,
array('data-autosave' => true,
'data-field' => 'data->judges[' . $index . ']->notes',
'data-type' => 'STRING',
'data-original' => $judge->notes,
'class' => 'judge_notes',
'style' => 'width: 80%; height: 3.5em; font-family: Arial,Helvetica,sans-serif; font-size: 9pt; line-height: 1.15em;')) }}
@endforeach
@else
You have not added any judges. Click the Add Another Judge button to insert a row which you can provide the information for a new judge.
@endif