{# INPUT: - worksheet_name - a string containing a worksheet's name - worksheet_html - a string containing the html for a worksheet - do_print - a boolean stating whether to render a print version of the worksheet #} {% extends "base.html" %} {% block title %}Sage Worksheet: {{ worksheet_name }}{% endblock %} {% block css %}main{% endblock %} {% block javascript %} {% if do_print %} {% endif %} {% endblock %} {% block body_attrs %} {% if not do_print %} class="worksheet-online" onLoad="initialize_the_notebook();" {% endif %} {% endblock %} {% block body %} {% if do_print %}