Skip to content

Embeddable Widgets

Sailboat Racing provides embeddable widgets that you can display on your club's own website or on a screen in the clubhouse to show live race results and series standings. Widgets auto-cycle through slides and refresh their data every 5 minutes. The refresh reloads the widget to pull the latest results, so the slideshow restarts from the first slide each time.

Available Widgets

Race Results Widget

Displays recent race results in an auto-cycling slideshow:

/clubs/{slug}/embed/races

Series Standings Widget

Displays current series standings in an auto-cycling slideshow:

/clubs/{slug}/embed/series

Configuration Parameters

Both widgets accept URL query parameters to customise the display:

Parameter Type Description Default
count Integer Number of races or series to cycle through 3
interval Integer Time in seconds each slide is shown before advancing 10
from Date Start date filter (ISO format, e.g. 2026-01-01) -
to Date End date filter (ISO format, e.g. 2026-12-31) -
zoom Integer Zoom level as a percentage (e.g. 150 for 150%) 100
qr Boolean Show a QR code (linking to your club page) in the corner true

Examples

Show the last 5 race results, cycling every 15 seconds:

/clubs/my-club/embed/races?count=5&interval=15

Series standings zoomed to 150% for a large clubhouse TV, with QR code hidden:

/clubs/my-club/embed/series?zoom=150&qr=false

Embedding on Your Website

Use an <iframe> to embed the widget on your club's website:

<iframe
  src="https://sailboat.racing/clubs/my-club/embed/races?count=5&interval=15"
  width="100%"
  height="600"
  frameborder="0"
  style="border:none;">
</iframe>

Configuring via the Admin Panel

Organisation admins can use the Embed Views page in the admin panel (sidebar > Embed) to visually configure the widget, preview it live, and copy the ready-to-use iframe code.

Use Cases

  • Club website - show latest results without visitors needing to navigate to Sailboat Racing
  • Clubhouse TV / display - run the widget full-screen on a monitor; use the zoom parameter to scale content for large screens
  • Race office screen - show live series standings during events
  • Social media / newsletters - link to the embed page for a clean, focused view

See Also