summaryrefslogtreecommitdiffstats
path: root/templates/html/htmlmemlist.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/html/htmlmemlist.tpl')
-rw-r--r--templates/html/htmlmemlist.tpl15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/html/htmlmemlist.tpl b/templates/html/htmlmemlist.tpl
new file mode 100644
index 0000000..30b4789
--- /dev/null
+++ b/templates/html/htmlmemlist.tpl
@@ -0,0 +1,15 @@
+{# input: memberListInfo #}
+{% if memberListInfo %}
+ {% if memberListInfo.members|length>0 or memberListInfo.memberGroups|length>0 %}
+ {% for member in memberListInfo.members %}
+ {% include 'htmlmemdecl.tpl' %}
+ {% endfor %}
+ {% for memgroup in memberListInfo.memberGroups %}
+ {% with memberListInfo=memgroup inheritId='' %}
+ {% for member in memberListInfo.members %}
+ {% include 'htmlmemdecl.tpl' %}
+ {% endfor %}
+ {% endwith %}
+ {% endfor %}
+ {% endif %}
+{% endif %}