Make table ordering desceding after score

This commit is contained in:
Denis-Cosmin Nutiu 2017-04-30 14:17:56 +03:00
parent 3a4b01ad60
commit e285131e8b

View file

@ -37,7 +37,8 @@
{{super()}}
<script>
$(document).ready(function(){
$('#result-table').DataTable();
$table = $('#result-table').DataTable();
$table.column('3:visible').order('desc').draw();
});
</script>
{% endblock %}