{% extends "html/base_authenticated.html" %} {# INPUT: - notebook - an instance of Notebook - worksheet - an instance of Worksheet - username - a string containing a username - title - a string - select - a string containing the control that is selected - backwards - a boolean #} {% set system_names = worksheet.notebook().system_names() %} {% block title %}{{ worksheet.name() }}{% endblock %} {% block javascript %} {% if JSMATH %} {% endif %} {% if JEDITABLE_TINYMCE and not worksheet.docbrowser() and not worksheet.is_published() %} {% endif %} {% if worksheet.filename() %} {% endif %} {% endblock %} {% block main %}
{{ worksheet.name() }}
{{ worksheet.html_time_last_edited() }}
{% if worksheet.warn_about_other_person_editing(username) and username != 'guest' and not worksheet.is_doc_worksheet() %} (Someone else is viewing this worksheet) {% endif %}
{% if not worksheet.is_doc_worksheet() %} {% endif %}
{% if not worksheet.is_doc_worksheet() %}  Typeset {% endif %}
{% if not worksheet.is_doc_worksheet() %} {% macro cls(x) %} {{ "control-select" if x == select else "control" }} {% endmacro %} {% macro backwards_text() %}{{ "../" if backwards else "" }}{% endmacro %} PrintPrint Worksheet Edit Text Undo Share Publish {% endif %}
{% block worksheet_main %}{% endblock %} {% endblock %}