[Rt-commit] rt branch, admin_ui, updated. 7d7a2fe995f6f69723dc6d3140fe011655d66dc6
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Tue Dec 22 00:37:48 EST 2009
The branch, admin_ui has been updated
via 7d7a2fe995f6f69723dc6d3140fe011655d66dc6 (commit)
from 8653eb14277f2ac9f599c86580a7b48be00c4dd7 (commit)
Summary of changes:
lib/RT/View/Admin/Groups.pm | 27 +++++++++++++++++++++++++++
lib/RT/View/Admin/Users.pm | 25 +++++++++++++++++++++++++
2 files changed, 52 insertions(+), 0 deletions(-)
- Log -----------------------------------------------------------------
commit 7d7a2fe995f6f69723dc6d3140fe011655d66dc6
Author: sunnavy <sunnavy at bestpractical.com>
Date: Tue Dec 22 13:37:31 2009 +0800
templates skeleton for /admin/users/ and /admin/groups/
diff --git a/lib/RT/View/Admin/Groups.pm b/lib/RT/View/Admin/Groups.pm
index e88e9b0..664d282 100644
--- a/lib/RT/View/Admin/Groups.pm
+++ b/lib/RT/View/Admin/Groups.pm
@@ -81,5 +81,32 @@ private template view_item_controls => sub {
}
};
+template 'custom_fields' => page { title => _('Group Custom Fields') } content {
+ my $self = shift;
+
+};
+
+template 'members' => page { title => _('Group Members') } content {
+ my $self = shift;
+
+};
+
+template 'history' => page { title => _('Group History') } content {
+ my $self = shift;
+
+};
+
+template 'group_rights' => page { title => _('Group Rights for Group') }
+ content {
+ my $self = shift;
+
+};
+
+template 'user_rights' => page { title => _('User Rights for Group') } content {
+ my $self = shift;
+
+};
+
+
1;
diff --git a/lib/RT/View/Admin/Users.pm b/lib/RT/View/Admin/Users.pm
index 0630eea..e06d281 100644
--- a/lib/RT/View/Admin/Users.pm
+++ b/lib/RT/View/Admin/Users.pm
@@ -92,5 +92,30 @@ sub _current_collection {
return $collection;
}
+template 'custom_fields' => page { title => _('User Custom Fields') } content {
+ my $self = shift;
+
+};
+
+template 'memberships' => page { title => _('User Memberships') } content {
+ my $self = shift;
+
+};
+
+template 'gnupg' => page { title => _('User GnuPG') } content {
+ my $self = shift;
+
+};
+
+template 'history' => page { title => _('User History') } content {
+ my $self = shift;
+
+};
+
+template 'my_rt' => page { title => _('MyRT for User') } content {
+ my $self = shift;
+
+};
+
1;
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list