<%def name="scoreboard(game_type_cd, pgstats)"> ##### CTF ##### % if game_type_cd == 'ctf': % for pgstat in pgstats: % endfor % endif ##### DM ##### % if game_type_cd == 'dm': % for pgstat in pgstats: % endfor % endif
Nick Kills Captures Pickups Flag Carrier Kills Returns Score Accuracy
% if pgstat.player_id > 2: ${pgstat.nick_html_colors()} % else: ${pgstat.nick_html_colors()} % endif ${pgstat.kills} ${pgstat.captures} ${pgstat.pickups} ${pgstat.carrier_frags} ${pgstat.returns} ${pgstat.score} % if pgstat.player_id > 1: View % endif
Nick Kills Deaths Suicides Score Accuracy
% if pgstat.player_id > 2: ${pgstat.nick_html_colors()} % else: ${pgstat.nick_html_colors()} % endif ${pgstat.kills} ${pgstat.deaths} ${pgstat.suicides} ${pgstat.score} % if pgstat.player_id > 1: View % endif