diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-15 22:00:45 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-01-15 22:00:45 +0100 |
commit | d44b8c81f939deb1e83e17d19c580b3bf6ac9ab6 (patch) | |
tree | ce7c1db61f85d3980baeb7695650c7bb3f3a4f8f /app/views/gui_functions/index.html.haml | |
parent | bf9c8cdfb5d2754e53b15560242cc7c43603155a (diff) |
Optimized caching.
Diffstat (limited to 'app/views/gui_functions/index.html.haml')
-rw-r--r-- | app/views/gui_functions/index.html.haml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/gui_functions/index.html.haml b/app/views/gui_functions/index.html.haml index ef909f0..9b53918 100644 --- a/app/views/gui_functions/index.html.haml +++ b/app/views/gui_functions/index.html.haml @@ -1,6 +1,7 @@ - title t("gui_functions.index.page_title") - if @gui_functions && @gui_functions.count > 0 - = render "index_core", :gui_functions => @gui_functions + - cache(['gui_functions_table', I18n.locale, @gui_functions.reorder(:updated_at).last, @gui_functions.count]) do + = render "index_core", :gui_functions => @gui_functions = render :partial => 'shared/create_link', :locals => {:child_class => GuiFunction}
\ No newline at end of file |