1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-19 23:48:51 +00:00
seahub/templates/snippets/my_groups.html

26 lines
821 B
HTML
Raw Normal View History

{% load seahub_tags group_avatar_tags i18n %}
2012-11-02 11:45:51 +00:00
{% load url from future %}
2012-10-09 06:59:42 +00:00
<div class="info-item">
2012-10-26 11:15:52 +00:00
<h3 class="info-item-top">{% trans "My Groups" %}</h3>
2012-09-05 03:03:15 +00:00
{% if groups %}
<ul class="info-item-bottom">
2012-09-05 03:03:15 +00:00
{% for group in groups %}
<li class="mygroup">
<a href="{% url 'group_info' group.props.id %}" class="no-deco">{% grp_avatar group.props.id 48 %}</a>
<a class="name" href="{% url 'group_info' group.props.id %}" title="{{ group.props.group_name }}">{{ group.props.group_name|trim:12 }}</a>
2012-09-05 03:03:15 +00:00
</li>
{% endfor %}
</ul>
{% else %}
2012-11-02 11:45:51 +00:00
<div class="info-item-bottom">
<p>
{% if cloud_mode and org.url_prefix %}
<a href="{% url 'org_groups' org.url_prefix %}">
{% else %}
<a href="{% url 'group_list' %}">
{% endif %}
{% trans "Create a group now" %}</a></p>
2012-11-02 11:45:51 +00:00
</div>
2012-09-05 03:03:15 +00:00
{% endif %}
2012-10-09 06:59:42 +00:00
</div>