Geen omschrijving

compare_activities.blade.php 34KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  1. @extends('layouts.master')
  2. @section('css')
  3. {{ HTML::style('vendor/jquery-ui-1.11.4.custom/jquery-ui.min.css') }}
  4. {{ HTML::style('vendor/jquery-ui-1.11.4.custom/jquery-ui.theme.min.css') }}
  5. @stop
  6. @section('navigation')
  7. @if ($role == 1)
  8. @include('local.managers.admins._navigation')
  9. @elseif($role == 2)
  10. @include('local.managers.sCoords._new_navigation')
  11. @elseif($role == 3)
  12. @include('local.managers.pCoords._new_navigation')
  13. @else
  14. @include('local.professors._navigation')
  15. @endif
  16. @stop
  17. @section('main')
  18. <div class="row">
  19. <ul id='levelTabs' class="nav nav-tabs" role="tablist">
  20. <!-- For each grouped course -->
  21. <li role="presentation" class='first'>
  22. <a data-toggle="tab" href="#activity_1"
  23. role="tab">{{ strlen($activity_1->name) > 50 ? substr($activity_1->name, 0, 50) . '...' : $activity_1->name }}</a>
  24. </li>
  25. <li role="presentation">
  26. <a data-toggle="tab" href="#activity_2"
  27. role="tab">{{ strlen($activity_2->name) > 50 ? substr($activity_2->name, 0, 50) . '...' : $activity_2->name }}</a>
  28. </li>
  29. </ul>
  30. <div id="allLists" class="tab-content">
  31. <div role="tabpanel" class='tab-pane first' id="activity_1">
  32. <h3 style="text-align: center">Performance by Learning Outcome Criteria in {{ $activity_1->name }}</h3>
  33. <hr>
  34. <div class="col-md-9" id="graph_1"></div>
  35. </div>
  36. <div role="tabpanel" class='tab-pane' id="activity_2">
  37. <h3 style="text-align: center">Performance by Learning Outcome Criteria in {{ $activity_2->name }}</h3>
  38. <hr>
  39. <div class="col-md-9" id="graph_2"></div>
  40. </div>
  41. </div>
  42. </div>
  43. <div class="row">
  44. <ul id='levelTabs' class="nav nav-tabs" role="tablist">
  45. <!-- For each grouped course -->
  46. <li role="presentation" class="first">
  47. <a data-toggle="tab" href="#activity_criteriaGraph_1"
  48. role="tab">{{ strlen($activity_1->name) > 50 ? substr($activity_1->name, 0, 50) . '...' : $activity_1->name }}</a>
  49. </li>
  50. <li role="presentation">
  51. <a data-toggle="tab" href="#activity_criteriaGraph_2"
  52. role="tab">{{ strlen($activity_2->name) > 50 ? substr($activity_2->name, 0, 50) . '...' : $activity_2->name }}</a>
  53. </li>
  54. </ul>
  55. <div id="allLists" class="tab-content">
  56. <div role="tabpanel" class='tab-pane first' id="activity_criteriaGraph_1">
  57. <h3 style="text-align: center">Criteria Achievement {{ $activity_1->name }}</h3>
  58. <hr>
  59. <div class="col-md-9" id="criteriaGraph_1">
  60. </div>
  61. </div>
  62. <div role="tabpanel" class='tab-pane' id="activity_criteriaGraph_2">
  63. <h3 style="text-align: center">Criteria Achievement {{ $activity_2->name }}</h3>
  64. <hr>
  65. <div class="col-md-9" id="criteriaGraph_2">
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. <div class="row">
  71. <ul id='levelTabs' class="nav nav-tabs" role="tablist">
  72. <!-- For each grouped course -->
  73. <li role="presentation" class="first">
  74. <a data-toggle="tab" href="#activity_tabla_1"
  75. role="tab">{{ strlen($activity_1->name) > 50 ? substr($activity_1->name, 0, 50) . '...' : $activity_1->name }}</a>
  76. </li>
  77. <li role="presentation">
  78. <a data-toggle="tab" href="#activity_tabla_2"
  79. role="tab">{{ strlen($activity_2->name) > 50 ? substr($activity_2->name, 0, 50) . '...' : $activity_2->name }}</a>
  80. </li>
  81. </ul>
  82. <div id="allLists" class="tab-content">
  83. <div role="tabpanel" class='tab-pane first' id="activity_tabla_1">
  84. <h3 style="text-align: center;">{{ $activity_1->name }} </h3>
  85. <br>
  86. <br>
  87. <h5 style="display: inline;">Date: </h5>
  88. <p style="display: inline;">
  89. <strong>({{ $activity_1->date }})</strong>
  90. </p>
  91. <br>
  92. <h5 style="display: inline;">Performance Indicators: </h5>
  93. <?php
  94. Log::info($activity_1->rubric[0]);
  95. ?>
  96. <p style="display: inline;"><i>{{ $activity_1->rubric[0]->num_scales }} (
  97. <?php
  98. $titles = $activity_1->rubric[0]->getTitles();
  99. ?>
  100. @if (sizeof($titles) != 1)
  101. @foreach ($titles as $index5 => $rubric_title)
  102. @if ($index5 != $activity_1->rubric[0]->num_scales - 1)
  103. {{ $rubric_title->text }},
  104. @else
  105. and {{ $rubric_title->text }}
  106. @endif
  107. @endforeach
  108. )
  109. @else
  110. {{ $titles[0]->text }} )
  111. @endif
  112. </i></p>
  113. <br>
  114. <h5 style="display: inline;">Scale: </h5>
  115. @if ($activity_1->rubric[0]->max_score == 1)
  116. <p style="display: inline;">1 point scale</p>
  117. @else
  118. <p style="display: inline;">1-{{ $activity_1->rubric[0]->max_score }} point scale</p>
  119. @endif
  120. <br>
  121. <br>
  122. <h4>Performance of Students by Learning Outcome Criteria</h4>
  123. <h5 style="display: inline; margin:30px;">Target by criterion: </h5>
  124. <p style="display: inline;"> <i>{{ $activity_1->rubric[0]->expected_points }} or more</i>
  125. </p>
  126. <br>
  127. <h5 style="display: inline; margin:30px;">Expected percent of students achieving the
  128. target by criterion: </h5>
  129. <p style="display: inline;"> <i>{{ $activity_1->rubric[0]->expected_percentage }} %</i>
  130. </p>
  131. <br>
  132. <table class='table table-striped table-condensed datatable'>
  133. <thead>
  134. <tr>
  135. <th>
  136. Criterion
  137. </th>
  138. <th>
  139. Number of Students Assessed
  140. </th>
  141. <th>
  142. Number of students that achieved the target
  143. </th>
  144. <th>
  145. %
  146. </th>
  147. <th>
  148. Learning Outcomes
  149. </th>
  150. </tr>
  151. </thead>
  152. <tbody>
  153. @foreach ($activity_1->allActivityCriterionInfo() as $index5 => $ac_criterion)
  154. <tr>
  155. <td> {{ $ac_criterion->name }}</td>
  156. <td>{{ Criterion::students_attempted($ac_criterion->criterion_id, $activity_1->id) }}
  157. </td>
  158. <td>
  159. {{ Criterion::students_achieved($ac_criterion->criterion_id, $activity_1->id) }}
  160. </td>
  161. <?php
  162. $out_att = Criterion::students_attempted($ac_criterion->criterion_id, $activity_1->id);
  163. $out_ach = Criterion::students_achieved($ac_criterion->criterion_id, $activity_1->id);
  164. $percentage = 'N/A';
  165. $activity_1->getOutcomeReport();
  166. ?>
  167. @if ($out_att == 0)
  168. <td class="col-md-1 danger">{{ $percentage }}</td>
  169. @else
  170. <?php
  171. $percentage = round(($out_ach / $out_att) * 100, 2);
  172. ?>
  173. @if ($percentage >= $activity_1->rubric[0]->expected_percentage)
  174. <td class="col-md-1 success">{{ $percentage }}%</td>
  175. @else
  176. <td class="col-md-1 danger">{{ $percentage }}%</td>
  177. @endif
  178. @endif
  179. <td>
  180. @foreach (Criterion::outcomes($ac_criterion->criterion_id) as $index6 => $outcome)
  181. {{ $index6 + 1 }}. <?php echo $outcome->name . "\n\n\n <br>"; ?>
  182. @endforeach
  183. </td>
  184. </tr>
  185. @endforeach
  186. </tbody>
  187. </table>
  188. <h5 style="display: inline; margin:30px;">Formative Actions: </h5>
  189. <?php $formative_actions = $activity_1->formativeActionsWithCriteria(); ?>
  190. @if ($formative_actions)
  191. <p style="display: inline;"> <u>{{ $formative_actions[0]->at_text }}:
  192. </u>
  193. <i>{{ $formative_actions[0]->description }}
  194. </i>
  195. </p>
  196. <br>
  197. <h5 style="display: inline; margin:30px;">Formative Action's Associated
  198. Criteria: </h5>
  199. <ul style=" margin:30px;">
  200. @foreach ($formative_actions as $criteria)
  201. <li> <i>{{ $criteria->name }} </i></li>
  202. @endforeach
  203. </ul>
  204. @endif
  205. <h5 style="display: inline; margin:30px;">Assessment Comments: </h5>
  206. @if ($activity_1->assessment_comments != null)
  207. <p style="display: inline;">{{ $activity_1->assessment_comments }}</p>
  208. @endif
  209. <hr>
  210. <br>
  211. <h4>Performance of Students by Learning Outcome</h4>
  212. <h5 style="text-align: center;">{{ $activity_1->name }} </h5>
  213. <h5 style="display: inline; margin:30px;">Target by learning outcome: </h5>
  214. <p style="display: inline;"> <i>>= 66.67% of the attempts</i>
  215. </p>
  216. <br>
  217. <h5 style="display: inline; margin:30px;">Expected percent of students achieving the
  218. target by learning outcome: </h5>
  219. <p style="display: inline;"> <i>
  220. <?php
  221. $expected = DB::table('target_outcomes_program')
  222. ->where('program_id', $course->program_id)
  223. ->where('semester_id', $course->semester_id)
  224. ->first();
  225. if (!$expected) {
  226. $expected = 'It has not been defined in the annual plan';
  227. } else {
  228. $expected = $expected->expected_target;
  229. }
  230. ?>
  231. {{ $expected }}
  232. </i>
  233. </p>
  234. <br>
  235. <table class='table table-striped table-condensed datatable'>
  236. <thead>
  237. <tr>
  238. <th>
  239. Learning Outcome
  240. </th>
  241. <th>
  242. Number of Students Assessed
  243. </th>
  244. <th>
  245. Number of students that achieved the target
  246. </th>
  247. <th>
  248. %
  249. </th>
  250. </tr>
  251. </thead>
  252. <tbody>
  253. @foreach ($activity_1->getOutcomeReport() as $outcome)
  254. <tr>
  255. <td>
  256. {{ $outcome->name }}
  257. </td>
  258. <td>
  259. {{ $outcome->attempted }}
  260. </td>
  261. <td>
  262. {{ $outcome->achieved }}
  263. </td>
  264. @if ($outcome->percentage >= $expected)
  265. <td class="col-md-1 success">{{ $outcome->percentage }}%</td>
  266. @else
  267. <td class="col-md-1 danger">{{ $outcome->percentage }}%</td>
  268. @endif
  269. </tr>
  270. @endforeach
  271. </tbody>
  272. </table>
  273. <br>
  274. <hr>
  275. </div>
  276. <div role="tabpanel" class='tab-pane' id="activity_tabla_2">
  277. <h3 style="text-align: center;">{{ $activity_2->name }} </h3>
  278. <br>
  279. <br>
  280. <h5 style="display: inline;">Date: </h5>
  281. <p style="display: inline;">
  282. <strong>({{ $activity_2->date }})</strong>
  283. </p>
  284. <br>
  285. <h5 style="display: inline;">Performance Indicators: </h5>
  286. <?php
  287. Log::info($activity_2->rubric[0]);
  288. ?>
  289. <p style="display: inline;"><i>{{ $activity_2->rubric[0]->num_scales }} (
  290. <?php
  291. $titles = $activity_2->rubric[0]->getTitles();
  292. ?>
  293. @if (sizeof($titles) != 1)
  294. @foreach ($titles as $index5 => $rubric_title)
  295. @if ($index5 != $activity_2->rubric[0]->num_scales - 1)
  296. {{ $rubric_title->text }},
  297. @else
  298. and {{ $rubric_title->text }}
  299. @endif
  300. @endforeach
  301. )
  302. @else
  303. {{ $titles[0]->text }} )
  304. @endif
  305. </i></p>
  306. <br>
  307. <h5 style="display: inline;">Scale: </h5>
  308. @if ($activity_2->rubric[0]->max_score == 1)
  309. <p style="display: inline;">1 point scale</p>
  310. @else
  311. <p style="display: inline;">1-{{ $activity_2->rubric[0]->max_score }} point scale</p>
  312. @endif
  313. <br>
  314. <br>
  315. <h4>Performance of Students by Learning Outcome Criteria</h4>
  316. <h5 style="text-align: center;">{{ $activity_2->name }} </h5>
  317. <h5 style="display: inline; margin:30px;">Target by criterion: </h5>
  318. <p style="display: inline;"> <i>{{ $activity_2->rubric[0]->expected_points }} or more</i>
  319. </p>
  320. <br>
  321. <h5 style="display: inline; margin:30px;">Expected percent of students achieving the
  322. target by criterion: </h5>
  323. <p style="display: inline;"> <i>{{ $activity_2->rubric[0]->expected_percentage }} %</i>
  324. </p>
  325. <br>
  326. <table class='table table-striped table-condensed datatable'>
  327. <thead>
  328. <tr>
  329. <th>
  330. Criterion
  331. </th>
  332. <th>
  333. Number of Students Assessed
  334. </th>
  335. <th>
  336. Number of students that achieved the target
  337. </th>
  338. <th>
  339. %
  340. </th>
  341. <th>
  342. Learning Outcomes
  343. </th>
  344. </tr>
  345. </thead>
  346. <tbody>
  347. @foreach ($activity_2->allActivityCriterionInfo() as $index5 => $ac_criterion)
  348. <tr>
  349. <td> {{ $ac_criterion->name }}</td>
  350. <td>{{ Criterion::students_attempted($ac_criterion->criterion_id, $activity_2->id) }}
  351. </td>
  352. <td>
  353. {{ Criterion::students_achieved($ac_criterion->criterion_id, $activity_2->id) }}
  354. </td>
  355. <?php
  356. $out_att = Criterion::students_attempted($ac_criterion->criterion_id, $activity_2->id);
  357. $out_ach = Criterion::students_achieved($ac_criterion->criterion_id, $activity_2->id);
  358. $percentage = 'N/A';
  359. $activity_2->getOutcomeReport();
  360. ?>
  361. @if ($out_att == 0)
  362. <td class="col-md-1 danger">{{ $percentage }}</td>
  363. @else
  364. <?php
  365. $percentage = round(($out_ach / $out_att) * 100, 2);
  366. ?>
  367. @if ($percentage >= $activity_2->rubric[0]->expected_percentage)
  368. <td class="col-md-1 success">{{ $percentage }}%</td>
  369. @else
  370. <td class="col-md-1 danger">{{ $percentage }}%</td>
  371. @endif
  372. @endif
  373. <td>
  374. @foreach (Criterion::outcomes($ac_criterion->criterion_id) as $index6 => $outcome)
  375. <?php echo $outcome->name . "\n\n\n <br>"; ?>
  376. @endforeach
  377. </td>
  378. </tr>
  379. @endforeach
  380. </tbody>
  381. </table>
  382. <h5 style="display: inline; margin:30px;">Formative Actions: </h5>
  383. <?php $formative_actions = $activity_2->formativeActionsWithCriteria(); ?>
  384. @if ($formative_actions)
  385. <p style="display: inline;"> <u>{{ $formative_actions[0]->at_text }}:
  386. </u>
  387. <i>{{ $formative_actions[0]->description }}
  388. </i>
  389. </p>
  390. <br>
  391. <h5 style="display: inline; margin:30px;">Formative Action's Associated
  392. Criteria: </h5>
  393. <ul style=" margin:30px;">
  394. @foreach ($formative_actions as $criteria)
  395. <li> <i>{{ $criteria->name }} </i></li>
  396. @endforeach
  397. </ul>
  398. @endif
  399. <h5 style="display: inline; margin:30px;">Assessment Comments: </h5>
  400. @if ($activity_2->assessment_comments != null)
  401. <p style="display: inline;">{{ $activity_2->assessment_comments }}</p>
  402. @endif
  403. <hr>
  404. <br>
  405. <h4>Performance of Students by Learning Outcome</h4>
  406. <h5 style="display: inline; margin:30px;">Target by learning outcome: </h5>
  407. <p style="display: inline;"> <i>>= 66.67% of the attempts</i>
  408. </p>
  409. <br>
  410. <h5 style="display: inline; margin:30px;">Expected percent of students achieving the
  411. target by learning outcome: </h5>
  412. <p style="display: inline;"> <i>
  413. <?php
  414. $expected = DB::table('target_outcomes_program')
  415. ->where('program_id', $course->program_id)
  416. ->where('semester_id', $course->semester_id)
  417. ->first(); //->expected_target;
  418. if (!$expected) {
  419. $expected = 'It has not been defined in the annual plan';
  420. } else {
  421. $expected = $expected->expected_target;
  422. }
  423. ?>
  424. {{ $expected }}
  425. </i>
  426. </p>
  427. <br>
  428. <table class='table table-striped table-condensed datatable'>
  429. <thead>
  430. <tr>
  431. <th>
  432. Learning Outcome
  433. </th>
  434. <th>
  435. Number of Students Assessed
  436. </th>
  437. <th>
  438. Number of students that achieved the target
  439. </th>
  440. <th>
  441. %
  442. </th>
  443. </tr>
  444. </thead>
  445. <tbody>
  446. @foreach ($activity_2->getOutcomeReport() as $outcome)
  447. <tr>
  448. <td>
  449. {{ $outcome->name }}
  450. </td>
  451. <td>
  452. {{ $outcome->attempted }}
  453. </td>
  454. <td>
  455. {{ $outcome->achieved }}
  456. </td>
  457. @if ($outcome->percentage >= $expected)
  458. <td class="col-md-1 success">{{ $outcome->percentage }}%</td>
  459. @else
  460. <td class="col-md-1 danger">{{ $outcome->percentage }}%</td>
  461. @endif
  462. </tr>
  463. @endforeach
  464. </tbody>
  465. </table>
  466. <br>
  467. <hr>
  468. </div>
  469. </div>
  470. </div>
  471. @stop
  472. @section('included-js')
  473. @include('global._datatables_js')
  474. <!-- HighCharts -->
  475. <script src="{{ asset('vendor/highcharts/highcharts.js') }}"></script>
  476. <!--script src="http://code.highcharts.com/modules/exporting.js"></script -->
  477. <!-- Datepicker -->
  478. <script src="{{ asset('vendor/jquery-ui-1.11.4.custom/jquery-ui.min.js') }}"></script>
  479. @stop
  480. @section('javascript')
  481. $(function() {
  482. $('#criteriaGraph_1').highcharts({
  483. chart: {
  484. type: 'bar',
  485. height:
  486. @if ($activity_1->is_assessed())
  487. {{ count($activity_1->criteria_achieved()) * 22 + 225 }}
  488. @else
  489. {{ 22 + 225 }}
  490. @endif,
  491. },
  492. title: {
  493. text: ' ',
  494. },
  495. xAxis: {
  496. categories: [
  497. @if ($activity_1->is_assessed())
  498. @foreach ($activity_1->criteria_achieved() as $id => $value)
  499. "{{ Criterion::withTrashed()->find($id)->name }}",
  500. @endforeach
  501. @endif
  502. ],
  503. labels: {
  504. style: {
  505. fontSize: '12px'
  506. },
  507. step: 1,
  508. useHTML: true,
  509. formatter: function() {
  510. return '<div style="width:200px; word-break:break; text-overflow:ellipsis; overflow:hidden;">' +
  511. this.value + '</div>';
  512. },
  513. }
  514. },
  515. yAxis: {
  516. min: 0,
  517. max: 100,
  518. title: {
  519. text: 'Percentage'
  520. },
  521. @if (isset($activity_1->rubric[0]) and isset($activity_1->rubric[0]->expected_percentage))
  522. plotLines:[{
  523. value:{{ $activity_1->rubric[0]->expected_percentage }},
  524. color: '#000',
  525. width:3,
  526. zIndex:4,
  527. label:{
  528. text: 'Goal ({{ $activity_1->rubric[0]->expected_percentage }}%)',
  529. style: {
  530. color: '#000',
  531. fontSize: '14px',
  532. }
  533. }
  534. }]
  535. @endif
  536. },
  537. tooltip: {
  538. headerFormat: '<span style="font-size:10px">{point.key}</span>
  539. <table> ',
  540. pointFormat: '<tr>
  541. <td style="color:{series.color};padding:0"> {series.name}: </td>' +
  542. '<td style="padding:0"><b>{point.y:.2f}%</b></td>
  543. </tr>',
  544. footerFormat: '</table>',
  545. shared: true,
  546. useHTML: true
  547. },
  548. plotOptions: {
  549. bar: {
  550. //grouping: false,
  551. shadow: false,
  552. borderWidth: 0,
  553. },
  554. series: {
  555. pointPadding: 0,
  556. groupPadding: 0.1
  557. },
  558. },
  559. series: [{
  560. type: 'column',
  561. name: 'Passed',
  562. color: '#e70033',
  563. dataLabels: {
  564. enabled: true,
  565. fontSize: 8,
  566. color: '#fff',
  567. align: 'right',
  568. format: '{y:.1f}%',
  569. style: {
  570. //fontWeight: 'bold'
  571. },
  572. y: -1
  573. },
  574. data: [
  575. @if ($activity_1->is_assessed())
  576. @foreach ($activity_1->cap_array as $id => $crit)
  577. //This conditional is to ignore criteria that weren't assessed. These would have a value of null.
  578. @if ($crit->score_percentage)
  579. {{ $crit->score_percentage }},
  580. @else
  581. 0,
  582. @endif
  583. @endforeach
  584. @endif
  585. ],
  586. pointPadding: 0,
  587. }]
  588. });
  589. $('#criteriaGraph_2').highcharts({
  590. chart: {
  591. type: 'bar',
  592. height:
  593. @if ($activity_2->is_assessed())
  594. {{ count($activity_2->criteria_achieved()) * 22 + 225 }}
  595. @else
  596. {{ 22 + 225 }}
  597. @endif,
  598. },
  599. title: {
  600. text: ' ',
  601. },
  602. xAxis: {
  603. categories: [
  604. @if ($activity_2->is_assessed())
  605. @foreach ($activity_2->criteria_achieved() as $id => $value)
  606. "{{ Criterion::withTrashed()->find($id)->name }}",
  607. @endforeach
  608. @endif
  609. ],
  610. labels: {
  611. style: {
  612. fontSize: '12px'
  613. },
  614. step: 1,
  615. useHTML: true,
  616. formatter: function() {
  617. return '<div style="width:200px; word-break:break; text-overflow:ellipsis; overflow:hidden;">' +
  618. this.value + '</div>';
  619. },
  620. }
  621. },
  622. yAxis: {
  623. min: 0,
  624. max: 100,
  625. title: {
  626. text: 'Percentage'
  627. },
  628. @if (isset($activity_2->rubric[0]) and isset($activity_2->rubric[0]->expected_percentage))
  629. plotLines:[{
  630. value:{{ $activity_2->rubric[0]->expected_percentage }},
  631. color: '#000',
  632. width:3,
  633. zIndex:4,
  634. label:{
  635. text: 'Goal ({{ $activity_2->rubric[0]->expected_percentage }}%)',
  636. style: {
  637. color: '#000',
  638. fontSize: '14px',
  639. }
  640. }
  641. }]
  642. @endif
  643. },
  644. tooltip: {
  645. headerFormat: '<span style="font-size:10px">{point.key}</span>
  646. <table> ',
  647. pointFormat: '<tr>
  648. <td style="color:{series.color};padding:0"> {series.name}: </td>' +
  649. '<td style="padding:0"><b>{point.y:.2f}%</b></td>
  650. </tr>',
  651. footerFormat: '</table>',
  652. shared: true,
  653. useHTML: true
  654. },
  655. plotOptions: {
  656. bar: {
  657. //grouping: false,
  658. shadow: false,
  659. borderWidth: 0,
  660. },
  661. series: {
  662. pointPadding: 0,
  663. groupPadding: 0.1
  664. },
  665. },
  666. series: [{
  667. type: 'column',
  668. name: 'Passed',
  669. color: '#e70033',
  670. dataLabels: {
  671. enabled: true,
  672. fontSize: 8,
  673. color: '#fff',
  674. align: 'right',
  675. format: '{y:.1f}%',
  676. style: {
  677. //fontWeight: 'bold'
  678. },
  679. y: -1
  680. },
  681. data: [
  682. @if ($activity_2->is_assessed())
  683. @foreach ($activity_2->cap_array as $id => $crit)
  684. //This conditional is to ignore criteria that weren't assessed. These would have a value of null.
  685. @if ($crit->score_percentage)
  686. {{ $crit->score_percentage }},
  687. @else
  688. 0,
  689. @endif
  690. @endforeach
  691. @endif
  692. ],
  693. pointPadding: 0,
  694. }]
  695. });
  696. $('#graph_1').highcharts({
  697. chart: {
  698. type: 'bar',
  699. },
  700. title: {
  701. text: ' '
  702. },
  703. xAxis: {
  704. categories: [
  705. @foreach ($outcomes as $outcome)
  706. "{{ $outcome->name }}",
  707. @endforeach
  708. ],
  709. labels: {
  710. style: {
  711. fontSize: '11px'
  712. },
  713. step: 1,
  714. useHTML: true,
  715. formatter: function() {
  716. return '<div style="width:200px; word-break:break; text-overflow:ellipsis; overflow:hidden;">' +
  717. this.value + '</div>';
  718. },
  719. }
  720. },
  721. yAxis: {
  722. min: 0,
  723. max: 100,
  724. title: {
  725. text: 'Percentage'
  726. }
  727. },
  728. tooltip: {
  729. headerFormat: '<span style="font-size:10px">{point.key}</span>
  730. <table> ',
  731. pointFormat: '<tr>
  732. <td style="color:{series.color};padding:0"> {series.name}: </td>' +
  733. '<td style="padding:0"><b>{point.y:.2f}</b></td>
  734. </tr>',
  735. footerFormat: '</table>',
  736. shared: true,
  737. useHTML: true
  738. },
  739. plotOptions: {
  740. bar: {
  741. //grouping: false,
  742. shadow: false,
  743. borderWidth: 0,
  744. },
  745. series: {
  746. pointPadding: 0,
  747. groupPadding: 0.075
  748. },
  749. },
  750. series: [{
  751. name: 'Obtained Value',
  752. color: '#e70033',
  753. dataLabels: {
  754. enabled: true,
  755. fontSize: 8,
  756. color: '#fff',
  757. align: 'right',
  758. format: '{y:.1f}%',
  759. style: {
  760. //fontWeight: 'bold'
  761. },
  762. y: -1
  763. },
  764. data: [
  765. @foreach ($outcomes as $index => $outcome)
  766. @if (is_array($outcomes_attempted_1) && array_key_exists($outcome->id, $outcomes_attempted_1) && $outcomes_attempted_1[$outcome->id] != 0)
  767. {{ ($outcomes_achieved_1[$outcome->id] / $outcomes_attempted_1[$outcome->id]) * 100 }},
  768. @else
  769. 0,
  770. @endif
  771. @endforeach
  772. ],
  773. pointPadding: 0,
  774. }, {
  775. name: 'Expected Value',
  776. color: '#555555',
  777. dataLabels: {
  778. enabled: true,
  779. fontSize: 8,
  780. color: '#fff',
  781. align: 'right',
  782. format: '{y:.1f}%',
  783. style: {
  784. //fontWeight: 'bold'
  785. },
  786. y: -1
  787. },
  788. data: [
  789. @foreach ($outcomes as $index => $outcome)
  790. @if (is_array($outcomes_attempted_1) && array_key_exists($outcome->id, $outcomes_attempted_1) && $outcomes_attempted_1[$outcome->id] != 0)
  791. {{ $outcome->expected_outcome }},
  792. @else
  793. 0,
  794. @endif
  795. @endforeach
  796. ],
  797. pointPadding: 0,
  798. }]
  799. });
  800. $('#graph_2').highcharts({
  801. chart: {
  802. type: 'bar',
  803. },
  804. title: {
  805. text:' '
  806. },
  807. xAxis: {
  808. categories: [
  809. @foreach ($outcomes as $outcome)
  810. "{{ $outcome->name }}",
  811. @endforeach
  812. ],
  813. labels: {
  814. style: {
  815. fontSize: '11px'
  816. },
  817. step: 1,
  818. useHTML: true,
  819. formatter: function() {
  820. return '<div style="width:200px; word-break:break; text-overflow:ellipsis; overflow:hidden;">' +
  821. this.value + '</div>';
  822. },
  823. }
  824. },
  825. yAxis: {
  826. min: 0,
  827. max: 100,
  828. title: {
  829. text: 'Percentage'
  830. }
  831. },
  832. tooltip: {
  833. headerFormat: '<span style="font-size:10px">{point.key}</span>
  834. <table> ',
  835. pointFormat: '<tr>
  836. <td style="color:{series.color};padding:0"> {series.name}: </td>' +
  837. '<td style="padding:0"><b>{point.y:.2f}</b></td>
  838. </tr>',
  839. footerFormat: '</table>',
  840. shared: true,
  841. useHTML: true
  842. },
  843. plotOptions: {
  844. bar: {
  845. //grouping: false,
  846. shadow: false,
  847. borderWidth: 0,
  848. },
  849. series: {
  850. pointPadding: 0,
  851. groupPadding: 0.075
  852. },
  853. },
  854. series: [{
  855. name: 'Obtained Value',
  856. color: '#e70033',
  857. dataLabels: {
  858. enabled: true,
  859. fontSize: 8,
  860. color: '#fff',
  861. align: 'right',
  862. format: '{y:.1f}%',
  863. style: {
  864. //fontWeight: 'bold'
  865. },
  866. y: -1
  867. },
  868. data: [
  869. @foreach ($outcomes as $index => $outcome)
  870. @if (is_array($outcomes_attempted_2) && array_key_exists($outcome->id, $outcomes_attempted_2) && $outcomes_attempted_2[$outcome->id] != 0)
  871. {{ ($outcomes_achieved_2[$outcome->id] / $outcomes_attempted_2[$outcome->id]) * 100 }},
  872. @else
  873. 0,
  874. @endif
  875. @endforeach
  876. ],
  877. pointPadding: 0,
  878. }, {
  879. name: 'Expected Value',
  880. color: '#555555',
  881. dataLabels: {
  882. enabled: true,
  883. fontSize: 8,
  884. color: '#fff',
  885. align: 'right',
  886. format: '{y:.1f}%',
  887. style: {
  888. //fontWeight: 'bold'
  889. },
  890. y: -1
  891. },
  892. data: [
  893. @foreach ($outcomes as $index => $outcome)
  894. @if (is_array($outcomes_attempted_2) && array_key_exists($outcome->id, $outcomes_attempted_2) && $outcomes_attempted_2[$outcome->id] != 0)
  895. {{ $outcome->expected_outcome }},
  896. @else
  897. 0,
  898. @endif
  899. @endforeach
  900. ],
  901. pointPadding: 0,
  902. }]
  903. });
  904. var chart = $('#graph_1').highcharts();
  905. var titletext = $('#graph_1').highcharts().options.title.text;
  906. var newtitletext = titletext.replace("&#039;", "\'");
  907. chart.setTitle({
  908. text: newtitletext
  909. });
  910. var chart = $('#graph_2').highcharts();
  911. var titletext = $('#graph_2').highcharts().options.title.text;
  912. var newtitletext = titletext.replace("&#039;", "\'");
  913. chart.setTitle({
  914. text: newtitletext
  915. });
  916. $('.first').each(function(){
  917. $(this).addClass('active');
  918. })
  919. // Include dummy graph for outcomes
  920. @include('global.dummy-outcomes')
  921. });
  922. @stop
  923. @section('included-js')
  924. @include('global._datatables_js')
  925. <!-- HighCharts -->
  926. <script src="{{ asset('vendor/highcharts/highcharts.js') }}"></script>
  927. <!--script src="http://code.highcharts.com/modules/exporting.js"></script -->
  928. <!-- Datepicker -->
  929. <script src="{{ asset('vendor/jquery-ui-1.11.4.custom/jquery-ui.min.js') }}"></script>
  930. @stop