1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-30 00:42:53 +00:00
seahub/templates/snippets/group_recommend_form.html
2012-08-15 14:57:14 +08:00

22 lines
971 B
HTML

{% load url from future %}
<form action="{% url 'group_recommend' %}" method="post" id="recommend-form" class="hide">{% csrf_token %}
<h3>推荐
{% for name, link in zipped %}
{% if forloop.last %}
{{ name }}
{% endif %}
{% endfor %}
到小组
</h3>
<label>小组名称:</label><br />
<input type="input" name="groups" id="recommend-groups" value="" /><br />
<label>推荐语:</label><br />
<textarea name="message" id="recommend-msg"></textarea><br />
<input type="hidden" name="repo_id" value="{{ repo.id }}" />
<input type="hidden" name="path" value="{{ path }}" />
<input type="hidden" name="attach_type" value="{{ attach_type }}" />
<p class="error hide"></p>
<input type="submit" id="recommend-submit" class="submit" value="提交" />
<button class="simplemodal-close">取消</button>
</form>