1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-28 16:17:02 +00:00
Files
seahub/templates/repos.html

26 lines
640 B
HTML
Raw Normal View History

{% extends "myhome_base.html" %}
2011-08-16 21:05:42 +08:00
{% block right_panel %}
2012-03-10 19:26:19 +08:00
<h2>所有同步目录</h2>
2011-08-16 21:05:42 +08:00
<table class="repo-list default">
<tr>
<th>名字</th>
<th>拥有者</th>
2011-08-16 21:05:42 +08:00
<th>ID</th>
<th>描述</th>
<th>操作</th>
2011-08-16 21:05:42 +08:00
</tr>
{% for repo in repos %}
<tr>
<td><a href="{{ SITE_ROOT }}repo/{{ repo.props.id }}/">{{ repo.props.name }}</a></td>
<td>{{ repo.owner_id}}</td>
2011-08-16 21:05:42 +08:00
<td>{{ repo.props.id }}</td>
<td>{{ repo.props.desc }}</td>
<td><a href="{{ SITE_ROOT }}repo/remove/{{ repo.props.id }}/">删除</a></td>
2011-08-16 21:05:42 +08:00
</tr>
{% endfor %}
</table>
{% endblock %}