{% extends "html/base_authenticated.html" %}
{% block title %}{{ gettext('Upload File') }}{% endblock %}
{% block page_id %}upload-worksheet-page{% endblock %}
{% block main %}
{% if "url" in request.args: %}
{{ gettext('Upload worksheet to the Sage Notebook') }}
{% else: %}
{{ gettext('Upload worksheet to the Sage Notebook') }}
{{ gettext('Supported file formats:') }}
.sws - {{ gettext('a Sage worksheet') }}
.html {{ gettext('or .txt - a worksheet text file with html code and cells surrounded by {{{ and }}} that defines a worksheet') }}
.html - {{ gettext('the URL of a page of the Sage Documentation, for example the URL of this page') }}
.html - {{ gettext('an HTML page generated by docutils from a ReStructuredText file') }}
.rst - {{ gettext('a ReStructuredText file (Add ".. escape-backslashes" as a line in the file if you want backslashes to be escaped. Put latex code inside backticks "`" or dollar signs "$" or "$$". Math role is not supported for now.)') }}
.zip - {{ gettext('a zip archive of any of the above') }}