Açıklama Yok

hello.blade.php 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. @extends('layouts.master')
  2. @section('navigation')
  3. @include('local.managers.admins._new_navigation')
  4. @stop
  5. @section('main')
  6. <div class="container">
  7. <div class="row">
  8. <h2>Rubrics</h2>
  9. <div class="well">
  10. <form>
  11. <div class="form-group">
  12. <label for="exampleInputEmail1">Select a Template</label>
  13. <select class="form-control">
  14. <option>One</option>
  15. <option>Two</option>
  16. <option>Three</option>
  17. </select>
  18. </div>
  19. <div class="form-group">
  20. <label for="exampleInputEmail1">Select a Learning Outcome</label>
  21. <select class="form-control">
  22. <option>One</option>
  23. <option>Two</option>
  24. <option>Three</option>
  25. </select>
  26. </div>
  27. <div class="form-group">
  28. <label for="exampleInputEmail1">Select a Criterion</label>
  29. <select class="form-control">
  30. <option>One</option>
  31. <option>Two</option>
  32. <option>Three</option>
  33. </select>
  34. </div>
  35. </form>
  36. </div>
  37. </div>
  38. <div class="row">
  39. <table class="table table-striped">
  40. <thead>
  41. <tr>
  42. <th colspan="5"><input type="text" class="form-control input-xxl" placeholder="Rubric Name"></th>
  43. </tr>
  44. </thead>
  45. <thead>
  46. <tr>
  47. <th></th>
  48. <th>Beginning (1-2)</th>
  49. <th>Satisfactory (3-4)</th>
  50. <th>Good (6-7)</th>
  51. <th>Excellent (7-8)</th>
  52. </tr>
  53. </thead>
  54. <tbody>
  55. <tr>
  56. <td>Criterion 1</td>
  57. <td>..</td>
  58. <td>..</td>
  59. <td>..</td>
  60. <td>..</td>
  61. </tr>
  62. <tr>
  63. <td>Criterion 2</td>
  64. <td>..</td>
  65. <td>..</td>
  66. <td>..</td>
  67. <td>..</td>
  68. </tr>
  69. <tr>
  70. <td>Criterion 3</td>
  71. <td>..</td>
  72. <td>..</td>
  73. <td>..</td>
  74. <td>..</td>
  75. </tr>
  76. <tr>
  77. <td>Criterion 4</td>
  78. <td>..</td>
  79. <td>..</td>
  80. <td>..</td>
  81. <td>..</td>
  82. </tr>
  83. <tr>
  84. <td>Criterion 5</td>
  85. <td>..</td>
  86. <td>..</td>
  87. <td>..</td>
  88. <td>..</td>
  89. </tr>
  90. </tbody>
  91. </table>
  92. </div>
  93. <div class="row">
  94. <div class="col-md-12"><button class="btn btn-md btn-block btn-primary center-block">Save</button></div>
  95. </div>
  96. </div>
  97. @stop
  98. @section('javascript')
  99. $(function () {
  100. $('#container').highcharts({
  101. title: {
  102. text: 'Monthly Average Temperature',
  103. x: -20 //center
  104. },
  105. subtitle: {
  106. text: 'Source: WorldClimate.com',
  107. x: -20
  108. },
  109. xAxis: {
  110. categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
  111. 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
  112. },
  113. yAxis: {
  114. title: {
  115. text: 'Temperature (°C)'
  116. },
  117. plotLines: [{
  118. value: 0,
  119. width: 1,
  120. color: '#808080'
  121. }]
  122. },
  123. tooltip: {
  124. valueSuffix: '°C'
  125. },
  126. legend: {
  127. layout: 'vertical',
  128. align: 'right',
  129. verticalAlign: 'middle',
  130. borderWidth: 0
  131. },
  132. series: [{
  133. name: 'Tokyo',
  134. data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6]
  135. }, {
  136. name: 'New York',
  137. data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
  138. }, {
  139. name: 'Berlin',
  140. data: [-0.9, 0.6, 3.5, 8.4, 13.5, 17.0, 18.6, 17.9, 14.3, 9.0, 3.9, 1.0]
  141. }, {
  142. name: 'London',
  143. data: [3.9, 4.2, 5.7, 8.5, 11.9, 15.2, 17.0, 16.6, 14.2, 10.3, 6.6, 4.8]
  144. }]
  145. });
  146. });
  147. @stop