course_summary.tpl 461 B

1234567891011121314151617181920
  1. <div class="summary-legend">
  2. {{ table }}
  3. </div>
  4. <script>
  5. $(function() {
  6. $('.easypiechart-blue').easyPieChart({
  7. scaleColor: false,
  8. barColor: '#30a5ff',
  9. lineWidth:8,
  10. trackColor: '#f2f2f2'
  11. });
  12. $('.easypiechart-red').easyPieChart({
  13. scaleColor: false,
  14. barColor: '#f9243f',
  15. lineWidth:8,
  16. trackColor: '#f2f2f2'
  17. });
  18. });
  19. </script>