• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

uw-it-aca / myuw / 5124790886

pending completion
5124790886

Pull #2945

github

web-flow
Merge abe42b737 into 97a0bd1ad
Pull Request #2945: Feat/muwm 4072

94 of 94 new or added lines in 20 files covered. (100.0%)

17057 of 18654 relevant lines covered (91.44%)

9.39 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

16.67
/myuw_vue/components/teaching/course/grading/grading-system.vue
1
<template>
×
2
  <uw-card-property title="Grading System">
3
    <div>
4
      <span v-if="section.grading_system">
5
        {{ titleCaseWord(section.grading_system) }}
6
      </span>
7
      <span v-else> Unspecified </span>
8
    </div>
9
    <div>
10
      <span class="myuw-text-sm fst-italic">Grading systems: Standard or Credit/No-Credit</span>
11
      <uw-collapsed-item
12
        v-if="!section.pastTerm"
13
        :part="gradingLearnMore"
14
        caller-id="GradingSystem"
15
      >
16
        <template #collapsed-body>
17
          To change your
18
          <a href="https://www.washington.edu/students/gencat/front/Grading_Sys.html"
19
          >grading system</a>, contact your departmental time schedule coordinator.
20
        </template>
21
      </uw-collapsed-item>
22
    </div>
23
  </uw-card-property>
24
</template>
25

×
26
<script>
27
import CardProperty from '../../../_templates/card-property.vue';
×
28
import CollapsedItem from '../../../_common/collapsed-part.vue';
×
29

30
export default {
31
  components: {
32
    'uw-card-property': CardProperty,
33
    'uw-collapsed-item': CollapsedItem,
34
  },
35
  props: {
36
    section: {
37
      type: Object,
38
      required: true,
39
    },
40
  },
41
  computed: {
42
    gradingLearnMore() {
43
      return {
10✔
44
        title: 'Learn more',
45
        id: 'gradingLearnMore' + this.section.sln,
46
      };
47
    },
48
  },
49
};
×
50
</script>
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc