@section('page_title') OSAA - Contest Matchup @stop @section('page_sub_title') OSAA Contest Matchup @stop @section('scripts') @parent @stop @section('jquery_init') // Start at step 1 and hide any other steps var step = 1; $('div[data-step]') .css({'float' : 'left', 'position' : 'absolute'}) .each(function () { var div = $(this); if (parseInt(div.attr('data-step')) != step) { div.hide(); } }); // Setup data pickers $('[data-datepicker]').datepicker({dateFormat:'yy-mm-dd'}); // Setup next buttons $('.next_button') .button({'icons' : {'secondary' : 'ui-icon-circle-triangle-e'}}) .css({'font-size' : '9pt'}); $('div[data-step="1"] .next_button') .click(function () { var button = $(this); var panel = $('div[data-step="1"]'); var next_panel = $('div[data-step="2"]'); var errors = $('.errors', panel); // Get the activity, ensure it is not empty var activity = $('select[name="activity"] :selected').val(); if (activity == '') { errors .html('You must select a sport from the drop-down list.') .fadeIn(); return; } // Get the date, ensure it is not empty var date = $('[name="date"]').val(); if (date == '') { errors .html('You must specify the contest date using the date picker.') .fadeIn(); return; } // Move onto step 2 step = 2; // Update panel 2 next_panel.fadeIn(); panel .effect("drop", { direction : "left"}, "slow", function () { }); }); @stop @section('page_functions') @stop @section('main_content')

Information

This tool was designed to assist officials in preparing for assignments. Using the form below, the page will show a side by side comparison of two teams in an upcoming competition. This feature is only available for varsity level contests. Begin by selecting the sport and the contest date.

Start a New Search

{{ Form::label('activity', 'Sport', array('style' => 'font-weight: bold;')) }}
{{ Form::select('activity', $info['activity_options'], null, array('style' => '')) }}
{{ Form::label('date', 'Date', array('style' => 'font-weight: bold;')) }}
{{ Form::text('date', null, array('style' => 'width: 100px;', 'data-datepicker' => 'true')) }}
Next

Searching

Please wait while the database looks up all contests on .

@stop