With the Flow Template, schools can customize what events look like on calendars based on class/team/event data from its source. These can be customized on a per flow basis on the "Template" tab of the flow screen.
Note that any of the fields available on the right may all be used following this syntax: {{MainHeading.SubHeading.SubSubHeading}} - note the double curly brackets enclosing the code.
Class Schedule Examples:
1. Description plus the block name in parenthesis but will not put an empty parenthesis if there is not block name
{{Section.Description}} {{#if SectionMeeting.BlockName}} ({{SectionMeeting.BlockName}}){{/if}}
"Algebra 1" or "Algebra 1 (B)"
2. As above but with a dash instead of parenthesis:
{{Section.Description}}{{#if SectionMeeting.BlockName}} - {{SectionMeeting.BlockName}}{{/if}}
"Algebra 1" or "Algebra 1 - B"
Athletic Events:
Athletic events defaults to the event title - some schools do not enter an event title for practices or games, creating events with no titles.
1. Event title, but if that does not exist, team name plus whether a game or practics
{{#if AthleticEvent.Title}}{{AthleticEvent.Title}}{{else}}{{Team.Description}} {{AthleticEvent.EventType}}{{/if}}
"Triple League Baseball Tournament" or "Boys Baseball Practice" or "Boys Baseball Game"
2. Event title - home or away (if it was entered)
{{AthleticEvent.Title}} {{#if AthleticEvent.HomeAway}} - {{AthleticEvent.HomeAway}}{{/if}}
"Triple League Cross Country Meet" or "Triple League Cross Country Meet - Away"
3. Team name and type and, if there is an opponent, include "vs Opponent Name" at the end.
{{Team.Description}} {{AthleticEvent.EventType}} {{#if AthleticEvent.Opponent}} vs {{AthleticEvent.Opponent}}{{/if}}
"Girls Softball Practice" or "Girls Softball Game vs Green School"
Group Events:
1. Location, if input otherwise, internal resource
{{#if GroupEvent.Location}}{{GroupEvent.Location}}{{else}}{{GroupEvent.ResourceName}} {{/if}}
"Room 260" or "Room 260" (depending on how the location was entered)
Note: SchoolCal uses Handlebars syntax for the template fields.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article