1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 23:48:47 +00:00
Files
seahub/templates/group_add_repo.html

23 lines
400 B
HTML
Raw Normal View History

2011-09-10 20:07:46 +08:00
{% 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 %}