<%inherit file="base.mako"/> <%namespace name="nav" file="nav.mako" /> <%block name="navigation"> ${nav.nav('maps')} <%block name="title"> Map Top Scorer Index % if not top_scorers and last is not None:

Sorry, no more maps!

% elif not top_scorers and last is None:

No maps found. Yikes, get playing!

% else:
% for ts in top_scorers: % endfor
# Nick Score
${ts.rank} ${ts.nick|n} ${ts.total_score}

Note: these figures are from the past ${lifetime} days

% if len(top_scorers) == 20:
% endif % endif