1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 23:20:51 +00:00
Files
seahub/templates/group_add_repo.html
2011-09-10 20:07:46 +08:00

23 lines
400 B
HTML

{% extends "base.html" %}
{% block title %}Group{% endblock %}
{% block left_panel %}
{% endblock %}
{% block right_panel %}
Add repo to {{ group.props.name }}
<form action="" method="post">
{% if error_msg %}
<p class="error">{{ error_msg }}</p>
{% endif %}
<label>Repo ID:</label><br/>
{{ form.repo_id }}
<input type="submit" value="Submit" />
</form>
{% endblock %}