warn if user tries to upload 8bn traces at once

This commit is contained in:
Richard Fairhurst 2008-04-23 11:57:01 +00:00
parent cbb59310d3
commit 1b591df0bc

View file

@ -10,6 +10,14 @@
<% if @tag and @user and @user.display_name == @display_name %>
| <%= link_to 'See all your traces', :controller => 'trace', :action => 'mine' %>
<% end %>
<% if @display_name %>
<% if @user.traces.count(:conditions => "inserted=0")>4 %>
<br /><br />
You have <%= @user.traces.count(:conditions => "inserted=0") %> traces
waiting for upload. Please consider waiting for these to finish before
uploading any more, so as not to block the queue for other users.
<% end %>
<% end %>
<br />
<br />