]> git.openstreetmap.org Git - rails.git/commitdiff
warn if user tries to upload 8bn traces at once
authorRichard Fairhurst <richard@systemed.net>
Wed, 23 Apr 2008 11:57:01 +0000 (11:57 +0000)
committerRichard Fairhurst <richard@systemed.net>
Wed, 23 Apr 2008 11:57:01 +0000 (11:57 +0000)
app/views/trace/_trace_header.rhtml

index 179b79c32fccbe8541c345f93d470d93b31ad3ff..e84d46781742b3098810f09e8c3302e56a1bf8e8 100644 (file)
 <% if @tag and @user and @user.display_name == @display_name %>
  | <%= link_to 'See all your traces', :controller => 'trace', :action => 'mine' %>
 <% end %>
 <% 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 />
 
 <br />
 <br />