// TODO: David, a query that shows all workunits that do not have all results unsent is:
// select distinct workunit.id,workunit.name from workunit join result where workunit.id=result.workunitid and result.server_state!=2 order by workunit.id
// What is the inverse of this query? Ie select all workunits all of whose results are unsent. This would
// be useful to incorporate into this page.
start_table();
row2("First Workunit (ID) to cancel","<input size=32 name='wuid1'");
row2("Last Workunit (ID) to cancel","<input size=32 name='wuid2'");