outcomePopover.handlebars 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <div class="outcome-details{{#if dialog}}-dialog{{/if}}">
  2. <div class="line-graph">
  3. <div class="screenreader-only"></div>
  4. </div>
  5. <div class="head-content" tabindex="0">
  6. {{#if path}}
  7. <div class="title">{{path}}</div>
  8. <div class="chart">
  9. {{#if ratings.result_count}}
  10. <div class="chart-image pull-left"></div>
  11. <ol class="ratings pull-left">
  12. {{#each ratings}}
  13. <li class="rating"><span class="legend-color" style="background-color: {{color}}" /> {{description}}</li>
  14. {{/each}}
  15. </ol>
  16. {{else}}
  17. <p><img src="/images/pie-chart-disabled.png" /></p>
  18. <p>{{#t "no_results"}}(no results){{/t}}</p>
  19. {{/if}}
  20. </div>
  21. <div class="outcome-info">
  22. <div class="mastery">{{#t "mastery_set_at"}}Mastery set at{{/t}}: {{nf mastery_points format="outcomeScore"}}</div>
  23. {{#if description}}<div class="description">{{{description}}}</div>{{/if}}
  24. </div>
  25. {{else}}
  26. <div class="mastery-details pull-right" aria-hidden="true">
  27. {{#if scoreDefined}}
  28. <span>{{nf roundedScore format="outcomeScore"}} / {{nf mastery_points format="outcomeScore"}}</span>
  29. <span class="screenreader-only">
  30. {{#t}}Outcome: {{title}} has a status of {{statusTooltip}}{{/t}}
  31. </span>
  32. {{ addMasteryIcon status }}
  33. {{else}}
  34. <span>{{#t}}No score yet{{/t}}</span>
  35. {{/if}}
  36. </div>
  37. <div class="recent-details">
  38. <div class="last-assessment">{{#t}}Latest Assessment{{/t}}:&nbsp;
  39. {{#if result_title}}
  40. {{result_title}}
  41. {{else}}
  42. {{#t}}Not available until next submission{{/t}}
  43. {{/if}}
  44. </div>
  45. <div class="submission-time">{{datetimeFormatted submission_time}}</div>
  46. </div>
  47. <div class="screenreader-only">
  48. {{#if score}}
  49. {{#t}}Current Mastery Score: {{score}} out of {{mastery_points}}{{/t}}
  50. {{else}}
  51. {{#t}}No score yet{{/t}}
  52. {{/if}}
  53. </div>
  54. {{/if}}
  55. </div>
  56. <div class="calculation-method-example method-details content-box pad-box-mini border border-trbl border-round">
  57. {{> outcomes/calculationMethodExample }}
  58. </div>
  59. </div>