123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263 |
- <?php
-
- echo '<html>';
- echo '<body>';
-
- //Inline styles (only for printing)
- echo
- '<style type="text/css">
- body
- {
- font-family: "Arial", sans-serif;
- width:90%;
- margin: 0 auto;
- }
- .header-text
- {
- text-align:center;
- font-weight: bold;
- margin:0;
- }
-
- h1.header-text
- {
- margin: 15px 0;
- }
-
- table
- {
- border-collapse: collapse;
- border: 1px solid black;
- width: 100%;
- margin: 30px auto;
- font-size:1vw;
- }
- td, th
- {
- border: 1px solid black;
- padding: 5px;
- }
-
- .activity-name-row
- {
- background:black;
- color:white;
- }
-
- .activity-headers-row
- {
- background:lightgrey;
- font-weight:bold;
- }
-
- .report-info
- {
- margin:5px 0;
- font-size: 16px;
- }
-
- .criterion-field
- {
- text-align:left;
- }
-
- .score-field, .total, .percentage
- {
- text-align:center;
- }
-
- .header
- {
- margin: 30px 0;
- }
-
- .content
- {
- font-size: 12px;
- }
-
- .logo
- {
- position:absolute;
- right:0;
- top: 30px;
- width: 100px;
- }
-
- @media print{@page {size: landscape}}
- </style>';
-
- ?>
-
-
- <img class="logo" src="{{ asset('images/logo_uprrp_bw.png') }}" alt="UPRRP Logo">
-
-
- <div class="header">
- <p class="header-text">University of Puerto Rico, Río Piedras Campus</p>
- <p class="header-text">Online Learning Assessment System</p>
- <p class="header-text">{{$course->program->name}} Program</p>
- <h1 class="header-text">Activity Report</h1>
- </div>
-
-
- <div class="content">
- <p class="report-info">Activity: {{{ $activity->name}}}</p>
- <p class="report-info">Passing Criteria: <span id="expected_percentage">{{{ $rubric->expected_percentage }}}% of students must obtain at least </span><span id="expected_points">{{{$rubric->expected_points}}}</span> points. </p>
- <p class="report-info">Course: {{{ $course->code }}} {{{ $course->number }}}-{{{ $course->section }}} - {{$course->name}}</p>
- <p class="report-info">Professor: {{{ $course->user->surnames }}}, {{{ $course->user->first_name }}} </p>
- <p class="report-info">Report Date: {{ date('M/d/Y')}}</p>
- </div>
-
-
- <div class="row">
- <div class="col-md-12">
-
-
- <table id="assessment-table" class="table table-striped table-condensed table-bordered">
- <thead>
- <tr>
- <th>Student</th>
- @foreach ($rubric_contents as $criterion)
- <th class="criterion-field" data-criterion-id="{{{ $criterion->id }}}">{{ $criterion->name}}</th>
- @endforeach
- <th>Student Percentage</th>
- </tr>
- </thead>
- <tbody>
-
- <!-- If the activity was assessed, load the assessment.-->
- @if(sizeof($assessments)!=0)
- <!-- For each assessment -->
- @foreach ($assessments as $assessment)
- <tr class="student-row">
- <!-- Fetch student name -->
- <td class="student-field" data-student-id="{{ $assessment->student_id }}">
- {{{ Student::find($assessment->student_id)->name }}}
- </td>
-
- <!-- For each criterion in the rubric, there's a score field -->
- @for ($i = 0; $i<sizeof($rubric_contents); $i++)
- <td class="score-field">
- {{ $scores_array[$assessment->id][$rubric_contents[$i]->id] }}
- </td>
- @endfor
- <td class="percentage">{{{ $assessment->percentage }}}</td>
- </tr>
- @endforeach
- @endif
- </tbody>
- <tfoot>
- <tr>
- <td>
- <strong>Passed Criteria Percentage </strong>
- </td>
- @for ($i = 0; $i<sizeof($rubric_contents); $i++)
- <td class="total"><strong><span class="total-value"></span>%</strong>
- </td>
- @endfor
- <td></td>
-
- </tr>
- </tfoot>
- </table>
- </div>
- </div>
-
-
- <?
-
- echo '</body>';
- echo '</html>';
- ?>
-
- <script src="{{ asset('vendor/jquery.min.js') }}"></script>
- <script>
-
- $(document).ready(function(){
- // --------------------------------------------------------------------------
- // Page load
- // --------------------------------------------------------------------------
-
- $('.total').each(function(index)
- {
- percentagePerCriterionPlain(index+1);
- });
-
- $('.student-row').each(function(index)
- {
- percentagePerStudentPlain($(this));
- });
-
- window.print();
-
- // --------------------------------------------------------------------------
- // Functions
- // --------------------------------------------------------------------------
-
- // Calculate average of students that passed a specific criterion
- function percentagePerCriterionPlain(columnIndex)
- {
- // Object to hold the score sum of each criterion
- var sum = 0 ;
- var total = 0;
-
- columnIndex+=1;
-
- // Iterate through rows of column
- $('table tbody tr td:nth-child('+columnIndex+')').each(function( index )
- {
- var val = parseInt($(this).text());
- /* If N/A or 0 are chosen, they are ignored in the calculation. */
- if(val % 1 === 0 && val!=0) //Check if number is integer and not 0
- {
- if(val >= parseInt($('#expected_points').text()))
- {
- sum+=1;
- }
-
- total+=1;
- }
- });
-
- var percentage= (sum/total*100).toFixed(2);
-
- // If no criteria were assessed, set the percentage to 0.
- // This is to avoid show NaN%
- if(total==0)
- percentage="0.00";
-
- $('.total:nth-child('+columnIndex+') span').html(percentage);
-
- }
-
-
- // Calculate total for a specific student
- function percentagePerStudentPlain(row)
- {
- // Object to hold the score student's total score
- var sum = 0 ;
- var total = 0;
- var percentage = 0;
-
- row.find('td.score-field').each(function(index)
- {
- var val = parseInt($(this).text());
- if(val % 1 === 0) //Check if number is integer
- {
- sum += val;
- total+=1;
- }
- });
-
- percentage =((sum/(total*8))*100).toFixed(2);
-
- //If percentage is not a number, set it to 0.
- if(isNaN(percentage))
- percentage="0.00";
-
- row.find('.percentage').html('<strong>'+percentage+'%</strong>');
-
- }
- });
- </script>
|