diff options
author | Philip Häusler <msquare@notrademark.de> | 2011-06-02 22:40:08 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2011-06-02 22:40:08 +0200 |
commit | 3afd05636e46aedb53e1c1d954d23d6563b5e104 (patch) | |
tree | aa684fe9c652ddd4d929466e0f7b20a9b21cb593 /templates | |
parent | c0b15dfe0dce7c4603cc7ec7c19b5a6cf226dc95 (diff) |
admin groups
Diffstat (limited to 'templates')
-rw-r--r-- | templates/admin_groups.html | 21 | ||||
-rw-r--r-- | templates/admin_groups_edit_form.html | 21 |
2 files changed, 42 insertions, 0 deletions
diff --git a/templates/admin_groups.html b/templates/admin_groups.html new file mode 100644 index 00000000..c5b4ac57 --- /dev/null +++ b/templates/admin_groups.html @@ -0,0 +1,21 @@ +Hallo %nick%, +<br/> +hier hast du die Möglichkeit Gruppenrechte zu ändern: +<table> + <thead> + <tr> + <th> + Name + </th> + <th> + Rechte + </th> + <th> + + </th> + </tr> + </thead> + <tbody> + %groups% + </tbody> +</table> diff --git a/templates/admin_groups_edit_form.html b/templates/admin_groups_edit_form.html new file mode 100644 index 00000000..5729df64 --- /dev/null +++ b/templates/admin_groups_edit_form.html @@ -0,0 +1,21 @@ +<form action="%link%&action=save" method="post"> + <table> + <thead> + <tr> + <th> + + </th> + <th> + Name + </th> + <th> + Description + </th> + </tr> + </thead> + <tbody> + %privileges% + </tbody> + </table> + <input type="hidden" name="id" value="%id%" /><input type="submit" name="submit" value="Save" /> +</form>
\ No newline at end of file |