2012-01-29 13:05:35 +08:00
|
|
|
{% 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>
|
2012-01-29 13:05:35 +08:00
|
|
|
<th>名字</th>
|
2012-03-19 14:47:34 +08:00
|
|
|
<th>拥有者</th>
|
2011-08-16 21:05:42 +08:00
|
|
|
<th>ID</th>
|
2012-01-29 13:05:35 +08:00
|
|
|
<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>
|
2012-03-19 14:47:34 +08:00
|
|
|
<td>{{ repo.owner_id}}</td>
|
2011-08-16 21:05:42 +08:00
|
|
|
<td>{{ repo.props.id }}</td>
|
|
|
|
<td>{{ repo.props.desc }}</td>
|
2012-01-29 13:05:35 +08:00
|
|
|
<td><a href="{{ SITE_ROOT }}repo/remove/{{ repo.props.id }}/">删除</a></td>
|
2011-08-16 21:05:42 +08:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{% endblock %}
|