1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-30 22:34:53 +00:00
seahub/templates/snippets/repo_share_form.html
2012-10-20 16:28:42 +08:00

16 lines
716 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<form id="repo-share-form" action="{{ post_url }}" method="post" name="repo-share-form" class="hide">
<label>共享给:</label><br />
<textarea id="email_or_group" name="email_or_group" placeholder="输入邮箱或群组"></textarea>
{% if allow_public_share %}
<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="tip">{{ tips }}</p>
<p class="error hide"></p>
<input type="submit" value="提交" id="share-submit-btn" />
</form>