1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-08 18:30:53 +00:00

modified myhome right panel

This commit is contained in:
llj
2012-10-09 14:59:42 +08:00
parent 4789ad6343
commit bc3c0b577d
3 changed files with 44 additions and 16 deletions

View File

@@ -1,16 +1,18 @@
{% load group_avatar_tags %}
<h3>我的群组</h3>
<div class="info-item">
<h3 class="info-item-top">我的群组</h3>
{% if groups %}
<ul>
<ul class="info-item-bottom ovhd">
{% for group in groups %}
<li class="mygroup">
<a href="{{ SITE_ROOT }}group/{{ group.props.id }}/" class="no-deco">
<img src="{% grp_avatar_url group.props.id 48 %}" alt="{{ group.props.group_name }}的图标" title="{{ group.props.group_name }}" class="avatar" />
</a><br />
</a>
<a href="{{ SITE_ROOT }}group/{{ group.props.id }}/">{{ group.props.group_name }}</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>暂无</p>
<p class="info-item-bottom">暂无</p>
{% endif %}
</div>