{% extends "html/notebook/base.html" %} {# INPUT: - worksheet - an instance of Worksheet - notebook - an instance of Notebook which contains worksheet - show_debug - a boolean stating whether to show debug information - do_print - a boolean stating whether the file is for print mode #} {% block body_classes %}worksheet-online{% if not (worksheet.is_published() or notebook.user_is_guest(username) or worksheet.is_doc_worksheet()) %} active-worksheet-page{% endif %}{% endblock %} {% block page_id %}user-worksheet-index{% endblock %} {% block worksheet_main %} {% set toggle=true %}
{{ worksheet.html() }} {% if do_print %} {% else %} {% endif %}
{% if show_debug %}
{% endif %} {% if worksheet.computing() %} {% endif %} {% endblock %}