1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-16 06:03:35 +00:00
seahub/templates/snippets/repo_group_list.html

10 lines
203 B
HTML
Raw Normal View History

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