projects
/
xonotic
/
xonstat.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e917e57
)
Add map_id to map_index template.
author
Ant Zucaro <azucaro@gmail.com>
Fri, 29 Mar 2013 23:19:41 +0000
(19:19 -0400)
committer
Ant Zucaro <azucaro@gmail.com>
Fri, 29 Mar 2013 23:19:41 +0000
(19:19 -0400)
xonstat/templates/map_index.mako
patch
|
blob
|
history
diff --git
a/xonstat/templates/map_index.mako
b/xonstat/templates/map_index.mako
index
cd90904
..
d6fd85e
100644
(file)
--- a/
xonstat/templates/map_index.mako
+++ b/
xonstat/templates/map_index.mako
@@
-23,11
+23,13
@@
Map Index
</form>
<table class="table table-hover table-condensed">
<tr>
+ <th style="width:70px;">ID</th>
<th>Name</th>
<th>Added</th>
</tr>
% for map in maps:
<tr>
+ <td>${map.map_id}</td>
<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><span class="abstime" data-epoch="${map.epoch()}" title="${map.create_dt.strftime('%a, %d %b %Y %H:%M:%S UTC')}">${map.fuzzy_date()}</span></td>
</td>