From 0c030cd0254470fa81012489d38f24b018f227c5 Mon Sep 17 00:00:00 2001
From: Jen Mankoff <jmankoff@cs.washington.edu>
Date: Sat, 26 Oct 2024 12:02:43 -0700
Subject: [PATCH] made template change clearer

---
 _includes/grade-calculation.html       |  8 +++-----
 assignments/website-report-template.md | 20 ++++++++++++++++++--
 index-ugrad.md                         | 10 ++++++----
 3 files changed, 27 insertions(+), 11 deletions(-)

diff --git a/_includes/grade-calculation.html b/_includes/grade-calculation.html
index 1e1e0a25..f6ef8530 100644
--- a/_includes/grade-calculation.html
+++ b/_includes/grade-calculation.html
@@ -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;
 	
diff --git a/assignments/website-report-template.md b/assignments/website-report-template.md
index 638a0fa2..049a16f8 100644
--- a/assignments/website-report-template.md
+++ b/assignments/website-report-template.md
@@ -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*
diff --git a/index-ugrad.md b/index-ugrad.md
index b41c68c4..10ca3d48 100755
--- a/index-ugrad.md
+++ b/index-ugrad.md
@@ -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.
-- 
GitLab