CCCAA

  • Composite
  • Search
  • Menu
Site Navigation
  • Sports
    • Men's Sports
      • Baseball
        • Schedule
        • Standings
        • Stats
      • Basketball
        • Schedule
        • Standings
        • Stats
      • Cross Country
        • Schedule
        • Rankings
      • Football
        • Schedule
        • Standings
        • Stats
      • Golf
        • Schedule
      • Soccer
        • Schedule
        • Standings
        • Stats
      • Swim & Dive
        • Schedule
      • Tennis
        • Schedule
        • Standings
      • Track & Field
        • Schedule
      • Volleyball
        • Schedule
        • Standings
        • Stats
      • Water Polo
        • Schedule
        • Standings
        • Stats
      • Wrestling
        • Schedule
        • Standings
    • Women's Sports
      • Badminton
        • Schedule
        • Standings
      • Basketball
        • Schedule
        • Standings
        • Stats
      • Beach Volleyball
        • Schedule
        • Standings
      • Cross Country
        • Schedule
        • Rankings
      • Golf
        • Schedule
      • Soccer
        • Schedule
        • Standings
        • Stats
      • Softball
        • Schedule
        • Standings
        • Stats
      • Swim & Dive
        • Schedule
      • Tennis
        • Schedule
        • Standings
      • Track & Field
        • Schedule
      • Volleyball
        • Schedule
        • Standings
        • Stats
      • Water Polo
        • Schedule
        • Standings
        • Stats
      • Wrestling
        • Schedule
        • Standings
  • Conferences
    • Bay Valley
    • Big 8
    • Central Valley
    • Coast
    • Golden Valley
    • Inland Empire Athletic
    • NCFC
    • SCFA
    • Orange Empire
    • Pacific Coast Athletic
    • South Coast
    • Western State
    • Wrestling Alliance
    • Conference Map
  • Membership Services
    • Administrators
    • Black Lives Matter Statement
    • Championship Handbooks
    • Championship Logos
    • Championship Team Photos (2018-current)
    • Coaches
    • Compliance Corner
    • Compliance Exam
    • Constitution & Bylaws (2022-23)
    • Convention Info
    • Coronavirus Info
    • Decorum Statement
    • Directory (PDF) (2022-23)
    • Employment
    • Forms
    • Gender Equity
    • Map of Colleges
    • Meetings/Legislation
    • Newsletter
    • Recruiting
    • Reports
    • Title IX Celebration
    • Year in Review Archive
    • Year in Review (2022)
  • About the CCCAA
    • About The CCCAA
    • Staff Directory/Contact
    • CCCAA Board
    • CCCAA Management Council
    • Member Institutions
    • Student Success
  • Polls
    • Fall (2022-23)
    • Fall (2021-22)
    • Winter (2021-22)
    • Spring (2021-22)
  • Tickets
Close

Menu

  • Compliance Exam
  • Affiliate Organizations
    • 3C4A
    • 4CA
    • ACCCES (eligibility specialists)
    • CCC Athletic Directors
    • CCC Athletic Trainers
    • CCC Physical Education, Kinesiology, Dance
    • CCC Sports Information
    • CCC Water Polo Coaches Association
    • CCC Women's Basketball Coaches
    • CCC Women's Volleyball Coaches
    • Southern California Wrestling Alliance
  • Awards
    • Hall of Fame
    • Scholar-Athletes
    • SIA Athletes of the Year
    • SIA Athletes of the Month
    • NATYCAA Cup
    • Coaches
  • Calendar of Events
  • Sponsors
  • Stats Login

Men's Water Polo Men's Water Polo

  • Home
  • Scoreboard
  • Standings
  • Championships
  • More+
    • Stat Leaders
      • Big 8
      • Coast
      • Orange Empire
      • Pacific Coast
      • South Coast
      • Western State
    • Team Stats
    • Rankings
    • Awards
    • Archives
There was a problem with a Velocity script
Page/httpd/prestosports/site-public/WEB-INF/themes/generic/related-links-template
ErrorError invoking method 'get(java.lang.Integer)' in java.util.ArrayList at /httpd/prestosports/site-public/WEB-INF/themes/generic/related-links-template[line 54, column 66]
Page source:
1: #macro (printLinkAriaLabelRelatedLinks $event $label)
2:     #if (!$event)
3:         #set ($ariaLabel = $label)
4:     #else
5:         #set ($ariaLabel = "${event.sport} event: ${formatter.formatDate($event.date, 'MMMM d hh:mm a:')}")
6:         #if ($event.neutralSite.length() > 0 || $event.home)
7:                 #set ($vsOrAt = "vs.")
8:         #else
9:                 #set ($vsOrAt = "at")
10:         #end
11:         #if ($event.teams.size() > 1)
12:                 #set ($ariaLabel = "${ariaLabel} ${event.teams.get(0).name} ${vsOrAt} ${event.teams.get(1).name}:")
13:         #elseif ($event.teams.size() == 1)
14:                 #set ($ariaLabel = "${ariaLabel} ${event.teams.get(0).name}:")
15:         #end
16:         #if ($event.neutralSite.length() > 0)
17:                 #set ($ariaLabel = "${ariaLabel} @ ${event.neutralSite}:")
18:         #end
19:         #set ($ariaLabel = "${ariaLabel} ${label}")
20:     #end
21:     aria-label="$ariaLabel"
22: #end ##printLinkAriaLabel
23: 
24: 
25: ## RELATED LINKING
26: #if (!($request.getAttribute("disable_related_links").length() > 0))
27: #if($request.getAttribute("relatedLinksContentPage"))
28:         #set ($contentPage = $request.getAttribute("relatedLinksContentPage"))
29:     #else
30:         #set ($contentPage = $page)
31:     #end
32:     #set ($relatedPages = $contentPage.relatedInSchedule)
33:         #if ($relatedPages.size() > 0)
34:                 ##disable related links from showing again
35:                 $request.setAttribute("disable_related_links", "y")
36: 
37:                 #set ($printedLinks = {})
38:                 #set ($eventLinks = [])
39:                 #set ($relatedEvents = $contentPage.schedule.getEventsWithLink($contentPage.url))
40:                 #if (!$relatedEvents.isEmpty())
41:                         #set ($relatedEvent = $relatedEvents[0])
42:                         #if (!$relatedEvent.links.isEmpty())
43:                                 #set ($eventLinks = $relatedEvent.links)
44:                         #end
45:                 #end
46:   
47:                 <div class="page-related-links clearfix">
48:                         #foreach ($related in $relatedPages)
49:                                 #set ($linkText = $related.mapLabel)
50:                                 #set ($linkUrl = $related.url)
51:                                 #set ($linkMapType = $related.mapType)
52:                                 #set ($linkFound = false)
53:                                 #if (!$relatedEvents.isEmpty())
54:                                         #set ($link = $eventLinks[0])
55:                                         #foreach ($l in $eventLinks)
56:                                         #if ($related.url == $l.url)
57:                                                 #set ($link = $l)
58:                                                 #set ($linkFound = true)
59:                                         #end
60:                                         #end
61:                                 #end
62:                                 #if ($linkFound == true)
63:                                         #set ($linkText = $link.name)
64:                                         #set ($linkUrl = $link.url)
65:                                         #set ($linkMapType = $link.mapType)
66:                                 #end
67:                                 #set ($linkTypeCounter = 1)
68:                                 #set ($linkTypeLabel = $linkText)
69:                                 #if ($printedLinks.containsKey("${$linkText}"))
70:                                         #set ($linkTypeCounter = $printedLinks.get("${linkText}") + 1)
71:                                         #set ($linkTypeLabel = "$linkTypeLabel ${linkTypeCounter}")
72:                                 #end
73:                                 #set ($ignore = $printedLinks.put($linkText, $linkTypeCounter))
74: 
75:                                  #if ($velocityCount > 1) | #end
76:                                     #if ($related.id == $contentPage.id)
77:                                         <strong>${linkText}</strong>
78:                                     #else
79:                                         <a href="$linkUrl" #printLinkAriaLabelRelatedLinks($relatedEvent, $linkTypeLabel) #if ($website.isExternalLink($linkUrl)) target="_blank" #end>${linkText}</a>            
80:                                     #end
81:                                 #end
82:                 </div> 
83:         #end
84: #end ## disable
85: 

Cuesta vs. Grossmont
@ Southwestern
11/13/2021 at 1:30 PM

Cuesta
11
Grossmont
12
SCORING 1 2 3 4 FINAL
Cuesta (,) 3 2 4 2 11
Grossmont (,) 12 0 0 0 12
SCORING SUMMARY
-- 1st -- Cuesta Grossmont
Cuesta 00:00 Joshua Halopoff (Layne Porter ) 1 0
Cuesta 00:00 Garrett Wilson (Eron Ray ) 2 0
Cuesta 00:00 Joshua Halopoff (Garrett Wilson ) 3 0
Grossmont 00:00 Emiliano Castro (Emiliano Castro ) 3 1
Grossmont 00:00 Ryan Beery (Emiliano Castro ) 3 2
Grossmont 00:00 Ryan Beery (Brock Kammerer ) 3 3
Grossmont 00:00 Ryan Beery (Brock Kammerer ) 3 4
Grossmont 00:00 Brock Kammerer (Brock Kammerer ) 3 5
Grossmont 00:00 Brock Kammerer (Chase Rodi ) 3 6
Grossmont 00:00 Garrett Duardo (Austin Gaier ) 3 7
Grossmont 00:00 Garrett Duardo (Garrett Duardo ) 3 8
Grossmont 00:00 Liam Zawadzki (Torin Carss ) 3 9
Grossmont 00:00 Liam Zawadzki (unassisted) 3 10
Grossmont 00:00 Torin Carss (unassisted) 3 11
Grossmont 00:00 Torin Carss (unassisted) 3 12
-- 2nd -- Cuesta Grossmont
Cuesta 00:00 Johnny Northcutt (Ronan Bailey ) 4 12
Cuesta 00:00 Jacob Sill (Daniel Rodriguez ) 5 12
-- 3rd -- Cuesta Grossmont
Cuesta 00:00 Stash Perry (Nick Taylor ) 6 12
Cuesta 00:00 Jacob Sill (Dean Moody ) 7 12
Cuesta 00:00 Johnny Northcutt (Danilo Vujovic ) 8 12
Cuesta 00:00 Dean Moody (Garrett Wilson ) 9 12
-- 4th -- Cuesta Grossmont
Cuesta 00:00 Jacob Sill (Layne Porter ) 10 12
Cuesta 00:00 Jacob Sill (Layne Porter ) 11 12

Cuesta

# PLAYER POS G A SH STL TO ED BLK
1A Garrett Wilson * 1 2 0 3 1 0 0
2 Danilo Vujovic 0 1 7 3 3 0 0
3 Layne Porter * 0 3 0 3 1 4 2
4 Grady Taylor 0 0 0 0 1 0 0
5 Dean Moody * 1 1 6 1 6 0 0
6 Eron Ray 0 1 3 2 6 0 0
7 Nick Taylor * 0 1 2 0 1 0 0
8 Eric Klang 0 0 0 1 2 2 0
9 Garrett Paxton 0 0 1 1 1 0 1
10 Jacob Sill * 4 0 6 0 5 4 0
11 Joshua Halopoff * 2 0 7 1 6 3 0
14 Ethan Streker 0 0 0 0 1 1 0
15 Daniel Rodriguez 0 1 1 2 1 2 0
16 Johnny Northcutt 2 0 5 0 5 0 1
17 Ronan Bailey * 0 1 0 1 0 0 0
18 Stash Perry 1 0 2 0 2 0 0
TM Team 0 0 0 0 0 0 0
Totals 11 11 40 18 42 16 4
# GOALIES GA Qtrs SV SH
1A Garrett Wilson (L, 0-1) 12 4.0 10 22

Grossmont

# PLAYER POS G A SH STL TO ED BLK
1B Parker George * 0 0 0 3 0 0 0
2 Emiliano Castro * 1 2 4 1 0 1 0
3 Ryan Beery * 3 0 4 1 0 2 2
4 Brock Kammerer * 2 3 6 0 0 0 2
6 Chase Rodi 0 1 2 0 0 0 0
7 Wilson Ark 0 0 1 0 0 0 0
8 Anson Rasmusson * 0 0 1 0 0 1 0
9 Austin Gaier * 0 1 4 1 0 0 0
12 Garrett Duardo * 2 1 7 1 0 2 0
14 Liam Zawadzki 2 0 4 7 0 0 0
15 Nathan Seaux 0 0 0 0 0 2 0
17 Tony Obregon 0 0 0 0 0 1 0
20 Torin Carss 2 1 3 1 0 2 1
TM Team 0 0 0 0 0 0 0
Totals 12 9 36 15 0 11 5
# GOALIES GA Qtrs SV SH
1B Parker George (W, 0-0) 11 4.0 16 27
SHOTS 1 2 3 4 TOTAL
Cuesta 0 0 0 0 0
Grossmont 0 0 0 0 0
SAVES 1 2 3 4 TOTAL
Cuesta 0 0 0 0 10
Grossmont 0 0 0 0 16
EXCLUSION SUMMARY
-- 1st --
Cuesta 03:34 Eron Ray Ejection
Cuesta 01:01 Ethan Streker Ejection
Cuesta 00:02 Joshua Halopoff Ejection
-- 2nd --
Cuesta 07:08 Dean Moody Ejection
Cuesta 06:02 Nick Taylor Ejection
Cuesta 05:41 Jacob Sill Ejection
Cuesta 00:52 Stash Perry Ejection
-- 3rd --
Cuesta 06:40 Stash Perry Ejection
Cuesta 04:34 Grady Taylor Ejection
Cuesta 04:14 Danilo Vujovic Ejection
-- 4th --
Cuesta 06:14 Dean Moody Ejection
Cuesta 02:00 Danilo Vujovic Ejection
Cuesta 00:07 Joshua Halopoff Ejection
OTHER INFORMATION
Game Length: 1:00
Attendance: 0
Officials and game personnel: Tyrent Lackey
Starter *
Facebook
Twitter
Email
Print
Addthis
CCCAA
2017 O St | Sacramento, CA | 95811

© Copyright 2019 California Community College Athletic Association.
All Rights Reserved.
  • Josten's Josten's
  • eteam eteam
  • HomeTown Ticketing HomeTown Ticketing
  • Helmet Tracker Helmet Tracker
PrestoSports