mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-02 23:48:47 +00:00
23 lines
400 B
HTML
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 %}
|