Skip to content
Snippets Groups Projects
Commit 181a6c7b authored by Jennifer Mankoff's avatar Jennifer Mankoff
Browse files

Merge branch 'jen-week5' into 'UACCESS-24fa'

made template change clearer

See merge request undergrad-accessibility-website!167
parents 1453e8fd 0c030cd0
No related branches found
No related tags found
1 merge request!8adjusted plain language to be specific
......@@ -12,19 +12,17 @@
<script>
function calculateSum() {
// Get the input values
const noncompetents = parseFloat(document.getElementById('noncompetents').value);
const competents = parseFloat(document.getElementById('competents').value);
const excellents = parseFloat(document.getElementById('excellents').value);
// Calculate the sum
let grade = (competents/3 + excellents/2.5);
if (noncompetents >= 1) {
grade = grade - noncompetents/3;
}
if (grade <= 0) {
grade = 0;
}
}
if (grade > 4) { grade = 4;}
let result = 'Your Competency Grade is : ' + grade;
......
......@@ -4,7 +4,7 @@ published: true
title: Website/App Accessibility Report Template (Group)
description: Template for your website report
revised: October 22, 2024
revised: October 26,2024
---
See the [Website Report Assignment](website.report.html) for more details.
......@@ -35,10 +35,26 @@ See the [Website Report Assignment](website.report.html) for more details.
| ... | ... | ... | ... |
|:-------|:------------------|:--------------------|:---------------|
<BR>
**OLD REPORT TEMPLATE (REMOVED)**
- ~~**Details on Violations**~~
- ~~*[The remainder of your report should provide an overview, and detail, on the problems found, grouped by area of [POUR](https://www.w3.org/WAI/fundamentals/accessibility-principles/). This is a good section of the report to divide and conquer if working in a group. Assume your reader will not look at the UARs and be complete.]*~~
- ~~*For each area of POUR, provide a list of WCAG violations in which you:*~~
- ~~*summarize the issue of concern*~~
- ~~*summarize the UAR(s) found if any*~~
- ~~*give an example of a typical case*~~
- ~~*provide details if there are any special cases*~~
- ~~*list (briefly) all the other places it happens*~~
- ~~*In addition, for each problem, or set of problems, you should discuss the remedy that is needed to address it. Be as concrete as you are able to be given the information available to you.*~~
<BR>
**NEW REPORT TEMPLATE**
- **Summary of UARs**
- *[The remainder of your report should provide an overview of the problems found. This is a good section of the report to divide and conquer]*
- *For each are of POUR, for each gorup of related UARs*
- *For each are of POUR, for each group of related UARs*
- *summarize the issue of concern and name the UARS being summarized*
- *Give an example of a typical case*
- *Give an example of a way to address it. Be as concrete as you are able to be given the information available to you.*
- **Appendix:** *Append the UARS you found. Make sure each has a unique name*
......@@ -404,13 +404,15 @@ Competencies are 85% of your grade in the class. Your scores on these competenci
Base grade: Number of Competents/3 + Number of Excellents/2.5
If you have more than one noncompetent, then your grade is reduced as follows:
- Competency grade: Base grade - (Number of non competents/3)
**We have updated the formula to simplifying it be removing the following:**
<s>If you have more than one noncompetent, then your grade is reduced as follows:</s>
<s>- Competency grade: Base grade - (Number of non competents/3)</s>
This form will calculate your current grade on your competencies using the formula above. Just enter the current status of your competencies from [canvas]({{site.canvas}}) below. Please see the [Syllabus]({{site.baseur}}) for details on how this contributes to your overall grade in the class. Also please note that non-completion of assignments, plagiarism, and regrades may impact your final competency grades in ways that are not necessarily reflected in Canvas.
<BR>
{% include grade-calculation.html %}
<!-- This form will calculate your current grade on your competencies using the formula above. Just enter the current status of your competencies from [canvas]({{site.canvas}}) below. Please see the [Syllabus]({{site.baseur}}) for details on how this contributes to your overall grade in the class. Also please note that non-completion of assignments, plagiarism, and regrades may impact your final competency grades in ways that are not necessarily reflected in Canvas. -->
<!-- {% include grade-calculation.html %} -->
### 15%: Assignment Completion, Participation and Effort
Your completion of assignments, and their demonstration of your learnings about class competencies, will impact about 15% of your grade.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment