The old page didn't scale very well if you have 150K builds in the queue, in fact it tended to make browsers hang. The new one just shows, for each jobset, the number of queued builds. The actual builds can be seen by going to the corresponding jobset page and looking at the evals.
QAUDQPWGE3S3WOG6GEIT5MFZKLUZDGR4V4DO4F7QHFYRPH6XDGTAC
LZVO64YG43JD7YMZSCTZNOBS5ROZA4FMPKJW2YOMHX2V5PTGBVWQC
6FRLEP4PY7HKDWDD7TWQ7HXILOWRMIKXHJRXXXS65Q5CXMQ5CSMQC
J5UVLXOK6EDIL5I7VKWH4V2QDS4DPD7FHRK6XBWSXFRQS4JKXFZQC
EFWN7JBV7YIHNMCA6ZGFRSHZIUQJ2EX57SWYGVT7ZRJCHPIM2R3QC
D5QIOJGPKQJIYBUCSC3MFJ3TXLPNZ2XMI37GXMFRVRFWWR2VMTFAC
NRSKJPP4FYTEKWNLVRK2QZDL6P24VJAC6R6NUBVX77JSUEBVRISAC
JZVRK5QJGPDT7HNQLC2UOJRG6V6QO4NJJ5V5QEMQ6VUTUIQWHG5AC
QL55ECJ6KMMBUOWQ6LKSOVN7L43CH4S6SPE2AQ3VX3KSGC32RP4AC
[% WRAPPER layout.tt title="Queue summary" %]
[% PROCESS common.tt %]
[% IF queued.size == 0 %]
<div class="alert alert-info">There are no pending builds.</div>
[% ELSE %]
<table class="table table-striped table-condensed clickable-rows">
<thead>
<tr>
<th>Jobset</th>
<th># Queued</th>
<th>Oldest queued</th>
<th>Newest queued</th>
</tr>
</thead>
<tdata>
[% FOREACH j IN queued %]
<tr>
<td>[% INCLUDE renderFullJobsetName project=j.project jobset=j.jobset %]</td>
<td>[% HTML.escape(j.queued) %]</td>
<td>[% INCLUDE renderRelativeDate timestamp=j.oldest %]</td>
<td>[% INCLUDE renderRelativeDate timestamp=j.newest %]</td>
</tr>
[% END %]
</tdata>
</table>
[% END %]
[% END %]