% @title = "Summary" %>
<%=@title%>
- <%=@public_body_count%> public authorities
- <%=@info_request_count%> requests
- <%=@user_count%> users
- <%=@track_thing_count%> tracked things
Things to do
<% if @holding_pen_messages.size > 0 %>
Put misdelivered responses with the right request
<% for message in @holding_pen_messages %>
-
<%= link_to excerpt(message.get_body_for_quoting, "", 60), "request/show/" + InfoRequest.holding_pen_request.id.to_s + "#incoming-" + message.id.to_s %>
(<%=simple_date(message.sent_at)%>)
<% end %>
<% end %>
<% if @one_week_old_unclassified.size > 0 %>
Classify responses that are still unclassified one week after response
<% for @request in @one_week_old_unclassified %>
-
<%= link_to h(@request.title), "request/show/" + @request.id.to_s %>
(<%=simple_date(@request.get_last_event.created_at)%>)
<% end %>
<% end %>
<% if @requires_admin_requests.size > 0 %>
Work out what to do with these unusual responses (a new category?)
<% for @request in @requires_admin_requests %>
-
<%= link_to h(@request.title), "request/show/" + @request.id.to_s %>
(<%=simple_date(@request.get_last_event.created_at)%>)
<% end %>
<% end %>
<% if @blank_contacts.size > 0 %>
Find missing FOI email for these public authorities (try phoning!)
<% for @blank_contact in @blank_contacts %>
-
<%= link_to h(@blank_contact.name), "body/show/" + @blank_contact.id.to_s %>
(<%=simple_date(@blank_contact.updated_at)%>)
<% end %>
<% end %>
<% if @requires_admin_requests.size == 0 and @one_week_old_unclassified.size == 0 and @blank_contacts.size == 0 %>
No pending administration required.
<% end %>