summaryrefslogtreecommitdiff
path: root/app/views/users/_user_groups.html.haml
diff options
context:
space:
mode:
authorspag <spag@golwen.net>2013-01-16 09:28:55 +0100
committerspag <spag@golwen.net>2013-01-16 09:28:55 +0100
commit3880e410353f1e80a938e110c04c2b3629ab5eb6 (patch)
tree793d44cfafcc3925684309c1650b922842828a01 /app/views/users/_user_groups.html.haml
parent1debae060b1c4a816f4565ad55490fee61c6472b (diff)
parent6635621faeebbc8dd744e0ad71741f9e82aed1f8 (diff)
Merge branch 'develop' of github.com:amooma/GS5 into develop
Diffstat (limited to 'app/views/users/_user_groups.html.haml')
-rw-r--r--app/views/users/_user_groups.html.haml8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/users/_user_groups.html.haml b/app/views/users/_user_groups.html.haml
new file mode 100644
index 0000000..7e206b6
--- /dev/null
+++ b/app/views/users/_user_groups.html.haml
@@ -0,0 +1,8 @@
+-# User groups (only if the current user can edit or destroy them)
+-#
+- if user.user_groups.map{ |x| can?( :edit, x ) || can?( :destroy, x ) }.include?(true)
+ - if can?( :index, UserGroup )
+ %h2=t("user_groups.index.page_title")
+ - if user.user_groups.count > 0
+ = render "user_groups/index_core", :user_groups => user.user_groups.where(:tenant_id => tenant.id).order(:name)
+ = render :partial => 'shared/create_link', :locals => {:parent => tenant, :child_class => UserGroup} \ No newline at end of file