]> de.git.xonotic.org Git - xonotic/xonstat.git/blobdiff - xonstat/templates/map_index.mako
Use relative time everywhere, but add hover with absolute time.
[xonotic/xonstat.git] / xonstat / templates / map_index.mako
index bb297ee6a20f3f0462e4e5642a2f1d949d9ae553..49a97c6a9ada0f295673b66466ea0991e23eccf2 100644 (file)
@@ -29,7 +29,7 @@ Map Index
     % for map in maps:
       <tr>
         <td><a href="${request.route_url("map_info", id=map.map_id)}" title="Go to this map's info page">${map.name}</a></th>
-        <td>${map.create_dt.strftime('%m/%d/%Y at %H:%M')}</td>
+        <td><span title="${map.create_dt.strftime('%a, %d %b %Y %H:%M:%S UTC')}">${map.fuzzy_date()}</span></td>
     </td>
       </tr>
     % endfor