@section('page_title') OSAA - Test @stop @section('page_sub_title') TEST @stop @section('scripts') @show @section('jquery_init') determine_scroll ("#large_content .main_content", 630); $('.tabs').tabs(); @stop @section('sub_navigation') @stop @section('page_functions') @stop @section('division_selector') {{ Form::open(array('url' => Request::url(), 'class' => 'scheduleDates', 'id' => 'scheduleDates', 'method' => 'get')) }} {{ Form::label('date', 'Date ', array('style' => 'font-weight:bold;'))}} {{ Form::select('date', $information['dates'], $information['date'], array('class' => 'auto_submit_onchange', 'style' => 'font-size:12pt;')) }} {{ Form::close() }} @stop @section('main_content')
@foreach ($information['divisions'] as $div)
@if ($information['schedule'][$div]['total'] > 0) @foreach ($information['contest_types'] as $ct) @if (count ($information['schedule'][$div][$ct]) > 0)

{{ Helpers::getContestTypeName($ct) }}

@foreach ($information['schedule'][$div][$ct] as $contest)
@if (Helpers::strEqual(date('g:i A', strtotime($contest->start_at)), '12:00 AM'))
TBD @else {{ date('g:i A T', strtotime($contest->start_at)) }} @endif
{{ $contest->away_team_name }}
@
{{ $contest->home_team_name }}

@if (!is_null ($contest->tournament)) {{ $contest->tournament }} @endif
@if ($contest->is_neutral_location)
N
@endif @if (!is_null ($contest->location))
{{ $contest->location_name }}
@endif
@endforeach @endif @endforeach @else There are no {{ $div }} contests scheduled for {{ date('l F j, Y', strtotime($information['date'])) }}. @endif
@endforeach
@stop {{-- Hello! --}}