123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- @extends('layouts.master')
-
- @section('navigation')
- @if(Auth::user()->role==1)
- @include('local.managers.admins._navigation')
- @elseif(Auth::user()->role==2)
- @include('local.managers.sCoords._navigation')
- @elseif(Auth::user()->role==3)
- @include('local.managers.pCoords._navigation')
- @endif
- @stop
-
- @section('main')
-
- <div class="row">
- <div class="col-md-12">
- <div class="btn-group pull-right">
- {{ HTML::linkAction('TemplatesController@printview', 'Print', array($template->id), array('class'=>'btn btn-default')) }}
- </div>
-
- <p>Passing Criteria:
- <span id="expected_percentage">{{{ $template->expected_percentage }}}% of students must obtain at least </span>
- <span id="expected_points">{{{$template->expected_points}}}</span> points
- </p>
-
- <table class="table datatable" id= "RubricTable">
- <thead>
- <tr>
- <th></th>
-
- <th>Criterion</th>
- @for($i = 0; $i <$template->num_scales; $i++)
- <th>{{$template->titles[$i]}} ({{1+($i*($template->max_score/$template->num_scales))}} - {{(1+$i)*($template->max_score/$template->num_scales)}})</th>
-
-
- @endfor
-
- <th>Learning Outcome</th>
- </tr>
- </thead>
- <tbody id ="bodyRubric">
- @foreach($template->criteria as $index=> $criterion)
- <tr data-criterion-copyright="{{$criterion->copyright}}" data-criterion-notes="{{$criterion->notes}}">
- <td>{{$index+1}}.</td>
-
- @if($criterion->notes)
-
- <td><span><em data-toggle="tooltip" data-placement="top" title="{{$criterion->notes}}">{{$criterion->name}}</em></span><sup></sup></td>
-
-
-
- @else
-
- <td><span>{{$criterion->name}}</span><sup></sup></td>
-
-
- @endif
-
- @foreach ($criterion->scales as $scale)
- <td>{{$scale}}</td>
-
- @endforeach
- <td><ol>
- @foreach ($criterion->outcomes as $outcome)
- <p>{{$outcome->name}}</p>
- @endforeach
- </ol></td>
- @endforeach
-
- </tbody>
- </table>
-
-
- <br>
- <br>
- <div id="copyright-info">
- <hr>
- <p class="small"><strong>Copyright Information</strong></p>
- <ul id="copyright-list" class="list-unstyled small">
- </ul>
- <hr>
- </div>
-
-
- <br>
- <br>
- <br>
-
- </div>
- </div>
-
- <script>
- /*
- function createTable(){
- $.post("{{URL::action('TemplatesController@onLoadFetch')}}",
- {id :{{$template->id}}},
- function (json){
- table = $('#RubricTable');
- for(criterionIndex in json.criteria ){
-
- criterion = json.criteria[criterionIndex];
- trFull = '<tr data-criterion-copyright="'+criterion.copyright+'" data-criterion-notes="'+criterion.notes+'">';
- trFull+= '<td>'+(parseInt(criterionIndex)+1)+'.</td>';
- if(criterion.notes){
-
- trFull+= '<td><span><em data-toggle="tooltip" data-placement="top" title="'+criterion.notes+'">'+criterion.name+'</em></span><sup></sup></td>';
- //if(criterion.subcriteria){
-
- //}
-
- }
- else{
-
- trFull+='<td><span>'+criterion.name+'</span><sup></sup></td>';
-
- }
-
- for(scalesIndex in json.scales[criterion.criterion_id]){
- scale = json.scales[criterion.criterion_id][scalesIndex];
- trFull += '<td>'+scale.description+'</td>';
- }
- trFull += '<td>Prueba</td>';
- trFull +='</tr>';
-
- $("#bodyRubric").append(trFull);
- }
-
-
-
-
- }, 'json'
- );
- }**/
- </script>
- @stop
-
- @section('included-js')
- @include('global._datatables_js')
- @stop
-
- @section('javascript')
-
- // --------------------------------------------------------------------------
- // Page load
- // --------------------------------------------------------------------------
-
- buildCopyrightList();
-
- // --------------------------------------------------------------------------
- // Functions
- // --------------------------------------------------------------------------
-
- // Build list from copyright info in template
- function buildCopyrightList()
- {
- // Empty the copyright list
- $('#copyright-list').empty();
-
- $('tbody tr').each(function( index )
- {
- var criterion = $(this);
- // If there's copyright info (in this particular view, it checks for empty strings)
- if(criterion.data('criterion-copyright')!='')
- {
- var copyright = criterion.data('criterion-copyright');
-
- // If there is anything in the copyright list
- if($('#copyright-list li').length>0)
- {
-
- // Check copyright list for the same copyright text
- var found = false;
- $('#copyright-list li').each(function()
- {
- // If found, give the string its number
- if(copyright==$(this).find('span').text())
- {
- copyrightNumber = Number.parseInt($(this).find('sup').text());
-
-
- criterion.children('td:nth-child(2)').find('sup').text(copyrightNumber);
- found =true;
-
- //to break
- return false;
- }
- });
-
- // Otherwise, give it the next number and append a new item to the
- // list
- if(!found)
- {
- var copyrightNumber = $('#copyright-list li').length+1;
- criterion.children('td:nth-child(2)').find('sup').text(copyrightNumber);
- $('#copyright-list').append('<li><sup>'+copyrightNumber+' </sup><span>'+copyright+'<span></li>');
- }
- }
- // Otherwise, give it number 1 and append it
- else
- {
-
- criterion.children('td:nth-child(2)').find('sup').text('1');
- $('#copyright-list').append('<li><sup>1 </sup><span>'+copyright+'<span></li>');
- }
- }
- });
-
- if($('#copyright-info li').length>0)
- {
- $('#copyright-info').show();
- }
- else
- {
- $('#copyright-info').hide();
- }
- }
-
-
- @stop
|