summaryrefslogtreecommitdiff
path: root/app/views/gui_functions/_index_core.html.haml
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-15 22:01:14 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-01-15 22:01:14 +0100
commit40a879fb6a3db4db302eb5113586901eb45b3279 (patch)
treece7c1db61f85d3980baeb7695650c7bb3f3a4f8f /app/views/gui_functions/_index_core.html.haml
parent96fc4789d9991548b9fd1144f185da1f3464f156 (diff)
parentd44b8c81f939deb1e83e17d19c580b3bf6ac9ab6 (diff)
Merge branch 'abilities_for_gui_functions' into develop
Diffstat (limited to 'app/views/gui_functions/_index_core.html.haml')
-rw-r--r--app/views/gui_functions/_index_core.html.haml29
1 files changed, 15 insertions, 14 deletions
diff --git a/app/views/gui_functions/_index_core.html.haml b/app/views/gui_functions/_index_core.html.haml
index 093a0d7..815b9c3 100644
--- a/app/views/gui_functions/_index_core.html.haml
+++ b/app/views/gui_functions/_index_core.html.haml
@@ -8,19 +8,20 @@
- reset_cycle
- for gui_function in gui_functions
%tr{:class => cycle('odd', 'even')}
- %td= gui_function.category
- %td
- = gui_function.name
- - if !gui_function.description.blank?
- %br
- %i= gui_function.description
- - @user_groups.each do |user_group|
- - if gui_function.gui_function_memberships.find_by_user_group_id(user_group.id)
- - if gui_function.gui_function_memberships.find_by_user_group_id(user_group.id).activated == true
- %td= 'x'
+ - cache(['gui_functions_table_row', I18n.locale, gui_function]) do
+ %td= gui_function.category
+ %td
+ = gui_function.name
+ - if !gui_function.description.blank?
+ %br
+ %i= gui_function.description
+ - @user_groups.each do |user_group|
+ - if gui_function.gui_function_memberships.find_by_user_group_id(user_group.id)
+ - if gui_function.gui_function_memberships.find_by_user_group_id(user_group.id).activated == true
+ %td= 'x'
+ - else
+ %td= ''
- else
- %td= ''
- - else
- %td= 'x'
+ %td= 'x'
- =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => gui_function} \ No newline at end of file
+ =render :partial => 'shared/index_view_edit_destroy_part', :locals => {:child => gui_function} \ No newline at end of file