1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-16 00:06:11 +00:00
seahub/templates/snippets/repo_share_form.html

17 lines
714 B
HTML

<form id="repo-share-form" action="{{ post_url }}" method="post" name="repo-share-form" class="hide">
{% if allow_public_share %}
<label>邮箱或群组,输入 all 共享到公共资料:</label><br />
{% else %}
<label>邮箱或群组:</label><br />
{% endif %}
<textarea id="email_or_group" name="email_or_group"></textarea>
<select name="permission">
<option value="rw" selected="selected">可读写</option>
<option value="r">只可浏览</option>
</select>
<input id="repo_id" type="hidden" name="repo_id" value="" />
<p class="tip">{{ tips }}</p>
<p class="error hide"></p>
<input type="submit" value="提交" id="share-submit-btn" />
</form>