You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
494 B
15 lines
494 B
<div id="standings"></div>
|
|
|
|
<div class="table-responsive">
|
|
<table id="standings-table" class="table table-bordered table-striped table-text-center table-vertical-middle"></table>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
standings_version=<?=$contest['extra_config']['standings_version']?>;
|
|
contest_id=<?=$contest['id']?>;
|
|
standings=<?=json_encode($standings)?>;
|
|
score=<?=json_encode($score)?>;
|
|
problems=<?=json_encode($contest_data['problems'])?>;
|
|
$(document).ready(showStandings());
|
|
</script>
|