1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-15 07:52:14 +00:00
seahub/templates/snippets/repo_share_form.html

19 lines
825 B
HTML
Raw Normal View History

<form id="repo-share-form" action="{{ post_url }}" method="post" name="repo-share-form" class="hide">
2012-10-20 02:28:22 +00:00
<label>共享给:</label><br />
2012-10-19 09:53:31 +00:00
<textarea id="email_or_group" name="email_or_group" placeholder="输入邮箱或群组"></textarea>
2012-10-23 09:46:15 +00:00
{% if cloud_mode %}
{% if org %}
<p class="tip">Tip必须是团体内成员或群组输入 all 共享到公共资料。</p>
{% endif %}
{% else %}
2012-10-20 02:28:22 +00:00
<p class="tip">Tip输入 all 共享到公共资料</p>
{% endif %}
<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="error hide"></p>
<input type="submit" value="提交" id="share-submit-btn" />
</form>