1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-19 01:44:13 +00:00
Files
seahub/templates/myhome.html

33 lines
623 B
HTML
Raw Normal View History

{% 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 %}