1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-31 06:40:39 +00:00
seahub/templates/snippets/repo_group_list.html
2012-10-22 13:19:12 +08:00

10 lines
203 B
HTML

{% load url from future %}
{% autoescape off %}
<ul>
{% for group in groups %}
<li><a href="{% url 'group_info' group.id %}">{{ group.group_name }}</a></li>
{% endfor %}
</ul>
{% endautoescape %}