2011-04-30 13:18:32 +08:00
|
|
|
{% extends "myhome_base.html" %}
|
2011-05-08 15:19:58 +08:00
|
|
|
|
|
|
|
{% block right_panel %}
|
2011-10-13 00:17:48 +08:00
|
|
|
<h3>基本信息</h3>
|
|
|
|
<table class="default">
|
|
|
|
<tr>
|
|
|
|
<td>Seafile ID</td>
|
|
|
|
<td>{{ ccnet_user_id }}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<h3>我的文件盒</h3>
|
|
|
|
<table class="repo-list default">
|
|
|
|
<tr>
|
|
|
|
<th>名字</th>
|
|
|
|
<th>ID</th>
|
|
|
|
<th>描述</th>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
{% for repo in owned_repos %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="/repo/{{ repo.props.id }}">{{ repo.props.name }}</a></td>
|
|
|
|
<td>{{ repo.props.id }}</td>
|
|
|
|
<td>{{ repo.props.desc }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
|
2011-05-08 15:19:58 +08:00
|
|
|
{% endblock %}
|