contest-standings.php 535 B

123456789101112131415
  1. <div class="my-4 shadow" id="standings"></div>
  2. <!---
  3. <div class="table-responsive shadow my-4">
  4. <table id="standings-table" class="table table-bordered table-striped table-text-center table-vertical-middle"></table>
  5. </div>-->
  6. <script type="text/javascript">
  7. standings_version=<?=$contest['extra_config']['standings_version']?>;
  8. contest_id=<?=$contest['id']?>;
  9. standings=<?=json_encode($standings)?>;
  10. score=<?=json_encode($score)?>;
  11. problems=<?=json_encode($contest_data['problems'])?>;
  12. $(document).ready(showStandings());
  13. </script>