mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-14 07:24:58 +00:00
20 lines
958 B
HTML
20 lines
958 B
HTML
{% load i18n %}
|
|
<form id="repo-share-form" action="{{ post_url }}" method="post" name="repo-share-form" class="hide">
|
|
<p>{% trans "Share to"%}</p>
|
|
<textarea id="email_or_group" name="email_or_group" placeholder="{% trans "Emails or Groups, Seperate by ','"%}"></textarea>
|
|
{% if cloud_mode %}
|
|
{% if org %}
|
|
<p class="tip">{% trans "Tip: must be org members or org groups, type all to share to public library."%}</p>
|
|
{% endif %}
|
|
{% else %}
|
|
<p class="tip">{% trans "Tip: type all to share to public library."%}</p>
|
|
{% endif %}
|
|
<select name="permission" class="share-permission-select">
|
|
<option value="rw" selected="selected">{% trans "Read-Write"%}</option>
|
|
<option value="r">{% trans "Read-Only"%}</option>
|
|
</select>
|
|
<input id="repo_id" type="hidden" name="repo_id" value="" />
|
|
<p class="error hide"></p>
|
|
<input type="submit" value="{% trans "Submit"%}" id="share-submit-btn" />
|
|
</form>
|