123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- @extends('layouts.master')
-
- @section('navigation')
- @include('local.managers.admins._new_navigation')
- @stop
-
-
- @section('main')
- <div class="container">
- <div class="row">
- <h2>Rubrics</h2>
- <div class="well">
- <form>
- <div class="form-group">
- <label for="exampleInputEmail1">Select a Template</label>
- <select class="form-control">
- <option>One</option>
- <option>Two</option>
- <option>Three</option>
- </select>
- </div>
- <div class="form-group">
- <label for="exampleInputEmail1">Select a Learning Outcome</label>
- <select class="form-control">
- <option>One</option>
- <option>Two</option>
- <option>Three</option>
- </select>
- </div>
- <div class="form-group">
- <label for="exampleInputEmail1">Select a Criterion</label>
- <select class="form-control">
- <option>One</option>
- <option>Two</option>
- <option>Three</option>
- </select>
- </div>
- </form>
- </div>
- </div>
-
- <div class="row">
- <table class="table table-striped">
- <thead>
- <tr>
- <th colspan="5"><input type="text" class="form-control input-xxl" placeholder="Rubric Name"></th>
- </tr>
- </thead>
- <thead>
- <tr>
- <th></th>
- <th>Beginning (1-2)</th>
- <th>Satisfactory (3-4)</th>
- <th>Good (6-7)</th>
- <th>Excellent (7-8)</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td>Criterion 1</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- </tr>
- <tr>
- <td>Criterion 2</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- </tr>
- <tr>
- <td>Criterion 3</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- </tr>
- <tr>
- <td>Criterion 4</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- </tr>
- <tr>
- <td>Criterion 5</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- <td>..</td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="row">
- <div class="col-md-12"><button class="btn btn-md btn-block btn-primary center-block">Save</button></div>
- </div>
- </div>
- @stop
-
- @section('javascript')
- $(function () {
- $('#container').highcharts({
- title: {
- text: 'Monthly Average Temperature',
- x: -20 //center
- },
- subtitle: {
- text: 'Source: WorldClimate.com',
- x: -20
- },
- xAxis: {
- categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
- 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
- },
- yAxis: {
- title: {
- text: 'Temperature (°C)'
- },
- plotLines: [{
- value: 0,
- width: 1,
- color: '#808080'
- }]
- },
- tooltip: {
- valueSuffix: '°C'
- },
- legend: {
- layout: 'vertical',
- align: 'right',
- verticalAlign: 'middle',
- borderWidth: 0
- },
- series: [{
- name: 'Tokyo',
- 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]
- }, {
- name: 'New York',
- 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]
- }, {
- name: 'Berlin',
- 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]
- }, {
- name: 'London',
- 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]
- }]
- });
- });
- @stop
|