1 <%inherit file="base.mako"/>
2 <%namespace name="nav" file="nav.mako" />
3 <%namespace file="navlinks.mako" import="navlinks" />
5 <%block name="navigation">
14 <h2>Sorry, no players yet. Get playing!</h2>
19 <form method="get" action="${request.route_url('search')}">
20 <input type="hidden" name="fs" />
21 <input type="text" name="nick" />
22 <input type="submit" value="search" />
24 <table class="table table-bordered table-condensed">
27 <th class="create-dt">Joined</th>
29 % for player in players:
31 <td><a href="${request.route_url("player_info", id=player.player_id)}" title="Go to this player's info page">${player.nick_html_colors()|n}</a></th>
32 <td><span class="abstime" data-epoch="${player.epoch()}" title="${player.create_dt.strftime('%a, %d %b %Y %H:%M:%S UTC')}">${player.joined_pretty_date()}</span></th>
38 ${navlinks("player_index", players.page, players.last_page)}
39 </div> <!-- /span4 -->