{% extends "ldt/ldt_utils/workspace.html" %} {% load i18n %} {% load guardian_tags %} {% block js_declaration %} {{block.super}} {% endblock %} {% block content %}
{% trans "My groups" %}
{% trans 'Create content' %}
{% trans "Click on the line to see the group's projects" %}
{% for group in groups.all %} {% get_obj_perms request.user for group as "group_perms" %} {% if "change_group" in group_perms %} {% else %} {% endif %} {% endfor %}
c {{ group.name }}{{ group.name }}
{% trans "The group's projects" %}
{% include "ldt/ldt_utils/partial/projectslist.html" %}
{% endblock %}