{% extends "notebook/worksheet_page_template.html" %} {# INPUT: - worksheet - an instance of Worksheet - worksheet_filename - a string containing a worksheet's filename - username - a string containing a username - active_worksheets - a list of the Worksheet instances that are active for username - filename_ - the name of the file - path - the path to the file - file_is_image - a boolean stating whether the file is an image - file_is_text - a boolean stating whether the file is a text file - text_file_content - a string containing the content of a text file - JSMATH - a boolean stating whether to include jsMath - JSMATH_IMAGE_FONTS - a boolean stating whether to include jsMath iamage fonts - JEDITABLE_TINYMCE - a boolean stating whether to include jEditable and TinyMCE - sage_jsmath_macros - an array containing strings of Javascript of Sage macros for jsMath #} {% set title = "Data file: %s"|format(filename_) %} {% block body_addition %}

You may download {{ filename_ }} or create a linked copy to the worksheet or delete {{ filename_ }}.

Access {{ filename_ }} in this worksheet by typing DATA+'{{ filename_ }}'. Here DATA is a special variable that gives the exact path to all data files uploaded to this worksheet.


{% if file_is_image %}
{% elif file_is_text %}
{% endif %} {% endblock %}