mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-08 21:58:42 +00:00
96d4a3ecf7
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
15 lines
494 B
PHP
15 lines
494 B
PHP
<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>
|