diff --git a/flask_soc_site/static/javascript.js b/flask_soc_site/static/javascript.js
index 73cdfca..e2849c8 100644
--- a/flask_soc_site/static/javascript.js
+++ b/flask_soc_site/static/javascript.js
@@ -10,3 +10,15 @@ $(function() {
}
});
});
+
+
+$.each($('td'), function () {
+ if ($(this).html().startsWith("Score: 0")) {
+ $(this).css({"background-color": "green", "color": "white"});
+ }
+ else if ($(this).html().startsWith("Score: ")) {
+ $(this).css({"background-color": "red", "color": "white"});
+ }
+});
+
+console.log("CAN I SEE THIS?");
diff --git a/flask_soc_site/templates/layout.html b/flask_soc_site/templates/layout.html
index 7f7b35e..853c9c3 100644
--- a/flask_soc_site/templates/layout.html
+++ b/flask_soc_site/templates/layout.html
@@ -32,10 +32,13 @@
-
+
+
+
- {% block scripts %}{% endblock %}
+
+ {% block scripts %} {% endblock %}