{% extends "html/notebook/base_aux.html" %} {# INPUT: - worksheet - an instance of Worksheet - username - a string containing a username - other_users - a list of strings containing other users names #} {% block sharebar_title %} Share this document {% endblock %} {% set select = "share" %} {% block after_sharebar %} {% if not (notebook.user_is_admin(username) or username == worksheet.owner()) %} Only the owner of a worksheet is allowed to share it. You can do whatever you want if you make your own copy. {% else %}

This Sage Worksheet is currently shared with the people listed in the box below.

You may add or remove collaborators (separate user names by commas).


Sage Users: {{ other_users|join(', ') }} {% endif %} {% endblock %}