1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-16 07:08:55 +00:00

Added i18n form login and myhome page

This commit is contained in:
zhengxie
2012-10-26 19:15:52 +08:00
parent 0106d08911
commit f76f396937
26 changed files with 468 additions and 129 deletions

View File

@@ -1,6 +1,6 @@
{% load group_avatar_tags %}
{% load group_avatar_tags i18n %}
<div class="info-item">
<h3 class="info-item-top">我的群组</h3>
<h3 class="info-item-top">{% trans "My Groups" %}</h3>
{% if groups %}
<ul class="info-item-bottom ovhd">
{% for group in groups %}
@@ -13,6 +13,6 @@
{% endfor %}
</ul>
{% else %}
<p class="info-item-bottom">暂无</p>
<p class="info-item-bottom">{% trans "Empty" %}</p>
{% endif %}
</div>