[#4604] Change the caching admin panel to use a split pane

This commit is contained in:
Eric Davis
2010-10-13 12:44:33 -07:00
parent f9bd3c0e53
commit 52622a678e

View File

@@ -1,18 +1,21 @@
<h2><%= l(:text_rate_caches_panel) %></h2> <h2><%= l(:text_rate_caches_panel) %></h2>
<div id="caching-run"> <div id="caching-run" class="splitcontentleft">
<p> <p>
<%= l(:text_last_caching_run) %><%= h(@last_caching_run) %> <%= l(:text_last_caching_run) %><%= h(@last_caching_run) %>
</p> </p>
</div>
<div id="cache-clearing-run">
<p> <p>
<%= l(:text_last_cache_clearing_run) %><%= h(@last_cache_clearing_run) %> <%= button_to(l(:text_load_missing_caches), {:controller => 'rate_caches', :action => 'update', :cache => 'missing'}, :method => :put) %>
</p> </p>
</div> </div>
<p> <div id="cache-clearing-run" class="splitcontentright">
<%= button_to(l(:text_load_missing_caches), {:controller => 'rate_caches', :action => 'update', :cache => 'missing'}, :method => :put) %> <p>
<%= button_to(l(:text_clear_and_load_all_caches), {:controller => 'rate_caches', :action => 'update', :cache => 'reload'}, :method => :put) %> <%= l(:text_last_cache_clearing_run) %><%= h(@last_cache_clearing_run) %>
</p> </p>
<p>
<%= button_to(l(:text_clear_and_load_all_caches), {:controller => 'rate_caches', :action => 'update', :cache => 'reload'}, :method => :put) %>
</p>
</div>