From 35f3501366829e4e5a02e67422c00c44aa178a2f Mon Sep 17 00:00:00 2001 From: Endi Sukma Dewata Date: Wed, 21 Nov 2012 13:28:22 -0500 Subject: Reorganized RA templates. The templates and JS scripts in RA them package have been moved into the RA core package. Ticket #407 --- base/ra/apache/docroot/admin/group/add_new.vm | 83 ++++++++++++++++++++ base/ra/apache/docroot/admin/group/index.vm | 81 ++++++++++++++++++++ base/ra/apache/docroot/admin/group/read.vm | 104 ++++++++++++++++++++++++++ 3 files changed, 268 insertions(+) create mode 100644 base/ra/apache/docroot/admin/group/add_new.vm create mode 100644 base/ra/apache/docroot/admin/group/index.vm create mode 100644 base/ra/apache/docroot/admin/group/read.vm (limited to 'base/ra/apache/docroot/admin/group') diff --git a/base/ra/apache/docroot/admin/group/add_new.vm b/base/ra/apache/docroot/admin/group/add_new.vm new file mode 100644 index 000000000..e9fac77b8 --- /dev/null +++ b/base/ra/apache/docroot/admin/group/add_new.vm @@ -0,0 +1,83 @@ + + + + +Add New Group + + + + + + + +#include ( "header.vm" ) + + + + +
+ +
+
+ +
+UID: $uid +
+ + +
+
+ +
+ + + +Administrator Interface +
+

+#if ($error == 'exist') +Group already exists +

+#end +

+
+ + + + + + + + + +
GID
Name
+
+Add Group +
+

+#include ( "footer.vm" ) + + + diff --git a/base/ra/apache/docroot/admin/group/index.vm b/base/ra/apache/docroot/admin/group/index.vm new file mode 100644 index 000000000..d19cacd2d --- /dev/null +++ b/base/ra/apache/docroot/admin/group/index.vm @@ -0,0 +1,81 @@ + + + + +RA Admin + + + + + + + +#include ( "header.vm" ) + +

+ + +
+ +
+
+ +
+UID: $uid +
+ + +
+
+ +
+ + + +Administrator Interface +
+

+Add New Group +

+

+ + + + + +#foreach($r in $rows) + + + + +#end +
GIDName
$r.getGID()$r.getName()
+
+

+Previous | Next +#include ( "footer.vm" ) + + + diff --git a/base/ra/apache/docroot/admin/group/read.vm b/base/ra/apache/docroot/admin/group/read.vm new file mode 100644 index 000000000..9aa8c8e1f --- /dev/null +++ b/base/ra/apache/docroot/admin/group/read.vm @@ -0,0 +1,104 @@ + + + + +Groups + + + + + + + +#include ( "header.vm" ) + +

+ + +
+ +
+
+ +
+UID: $uid +
+ + +
+
+ +
+ + + +Administrator Interface +
+

+

+ + + + + + + + + +
GID$gid
Name$name
+
+

+Delete This Group +

+----------------------------------------------- +
+Members +

+ +#foreach($r in $members) + + + +#end +
$r.getUID() [Delete]
+
+
+----------------------------------------------- +
+#if ($non_member_exists) +New Member +
+ + Add +
+#end +#include ( "footer.vm" ) + + + -- cgit