diff options
author | Nicolas Vigier <boklm@mageia.org> | 2013-02-21 23:49:28 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2013-02-21 23:49:28 +0000 |
commit | 0c32c5dc4c340621f45e90b28c7b6c7b22947aa0 (patch) | |
tree | caad9171fed24e52bcb29721c9bf80b82e08a197 /tmpl/group.html | |
download | mgapeople-0c32c5dc4c340621f45e90b28c7b6c7b22947aa0.tar mgapeople-0c32c5dc4c340621f45e90b28c7b6c7b22947aa0.tar.gz mgapeople-0c32c5dc4c340621f45e90b28c7b6c7b22947aa0.tar.bz2 mgapeople-0c32c5dc4c340621f45e90b28c7b6c7b22947aa0.tar.xz mgapeople-0c32c5dc4c340621f45e90b28c7b6c7b22947aa0.zip |
First version of mgapeople
Diffstat (limited to 'tmpl/group.html')
-rw-r--r-- | tmpl/group.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tmpl/group.html b/tmpl/group.html new file mode 100644 index 0000000..1a414a4 --- /dev/null +++ b/tmpl/group.html @@ -0,0 +1,18 @@ +<html> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + <title>[% config.sitename %]: g/[% groups.$group.cn.0 %]</title> + </head> + <body> + <h1>[% groups.$group.cn.0 %]</h1> + + <h3>[% groups.$group.description.0 %]</h3> + + Members: + <ul> + [% FOREACH user IN groups.$group.member %] + <li><a href="../u/[% users.$user.uid.0 %].html">[% users.$user.cn.0 %] ([% users.$user.uid.0 %])</a></li> + [% END %] + </ul> + </body> +</html> |