68 lines
1.9 KiB
HTML
68 lines
1.9 KiB
HTML
<script src="js/jquery.tablesorter.min.js"></script>
|
|
<script src="js/jquery.tablesorter.widgets.min.js"></script>
|
|
<script src="js/jquery.tablesorter.scroller.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(document).ready(
|
|
function(){
|
|
$('table#user_stats_table').tablesorter({
|
|
widgets: ["filter"],
|
|
usNumberFormat : false
|
|
});
|
|
}
|
|
);
|
|
</script>
|
|
|
|
<style>
|
|
div.col {
|
|
float:left;
|
|
width:10px;
|
|
height:10px;
|
|
}
|
|
table#user_stats_table input{
|
|
max-width:6em;
|
|
}
|
|
</style>
|
|
|
|
<h2><TMPL_VAR loc.title></h2>
|
|
<hr>
|
|
<TMPL_INCLUDE status.html>
|
|
|
|
<form method="post">
|
|
<input type="hidden" name="project_id" value="<TMPL_VAR project_id>">
|
|
<input type="hidden" name="studio_id" value="<TMPL_VAR studio_id>">
|
|
</form>
|
|
|
|
<table id="user_stats_table">
|
|
<thead>
|
|
<tr>
|
|
<th><TMPL_VAR loc.label_user></td>
|
|
<th><TMPL_VAR loc.label_score></td>
|
|
<th><TMPL_VAR loc.label_modified_at></td>
|
|
<th><TMPL_VAR loc.label_create_events></td>
|
|
<th><TMPL_VAR loc.label_update_events></td>
|
|
<th><TMPL_VAR loc.label_delete_events></td>
|
|
<th><TMPL_VAR loc.label_create_series></td>
|
|
<th><TMPL_VAR loc.label_update_series></td>
|
|
<th><TMPL_VAR loc.label_delete_series></td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<TMPL_LOOP user_stats>
|
|
<tr>
|
|
<td><TMPL_VAR user></td>
|
|
<td><TMPL_VAR score></td>
|
|
<td><TMPL_VAR modified_at></td>
|
|
<td><TMPL_VAR create_events></td>
|
|
<td><TMPL_VAR update_events></td>
|
|
<td><TMPL_VAR delete_events></td>
|
|
<td><TMPL_VAR create_series></td>
|
|
<td><TMPL_VAR update_series></td>
|
|
<td><TMPL_VAR delete_series></td>
|
|
</tr>
|
|
</TMPL_LOOP>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|