tap/app/views/static_pages/overview.html.erb
2014-11-06 20:07:18 +01:00

26 lines
558 B
Plaintext

<div class="row">
<div class="col-md-12">
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>Username</th>
<th>Marks</th>
<th> </th>
<th></th>
</tr>
</thead>
<tbody>
<%= render "static_pages/user" %>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".clickableRow").click(function() {
window.document.location = $(this).attr("href");
});
});
</script>