{# Simple driver dropdown. Requires list of drivers. #} {% macro driver_select(name='', label='') %}
{% endmacro %} {# Driver dropdown where a value might be preselected. Requires list of drivers. #} {% macro driver_select_with_preselect(match='', name='', label='') %}
{% endmacro %} {# Simple team dropdown. Requires list of teams. #} {% macro team_select(name='', label='') %}
{% endmacro %} {# Team dropdown where a value might be preselected. Requires list of teams. #} {% macro team_select_with_preselect(match='', name='', label='') %}
{% endmacro %} {# Easy nav-bar entries. When a page sets the active_page variable, the current entry will be underlined #} {% macro nav_selector(page='', text='') %} {% if active_page == page %}{% endif %} {{ text }} {% if active_page == page %}{% endif %} {% endmacro %} {% block title %}{% endblock title %} {% block head_extra %}{% endblock head_extra %} {# #}
{% block body %}{% endblock body %}