From 55efde5e5710458f157a948664748f60c7a867c5 Mon Sep 17 00:00:00 2001 From: Patrick Tonne Date: Mon, 27 Sep 2021 15:19:50 -0400 Subject: [PATCH 1/2] update a-tag nesting to allow for highlighting via tab --- .../dashboard_course.html | 150 +++++++++--------- 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/canvas_manage_course/templates/canvas_manage_course/dashboard_course.html b/canvas_manage_course/templates/canvas_manage_course/dashboard_course.html index 86d5850..6be17d2 100644 --- a/canvas_manage_course/templates/canvas_manage_course/dashboard_course.html +++ b/canvas_manage_course/templates/canvas_manage_course/dashboard_course.html @@ -28,106 +28,106 @@

{% if allowed.class_roster %}
- - {% endif %} {% if allowed.manage_people %}
- - {% endif %} {% if allowed.manage_sections %}
- - {% endif %} {% if allowed.custom_fas_card_1 %}
- - {% endif %} {% if allowed.fa_info %}
- - {% endif %} {% endif %} From 971fa91289df60d476f81d09483daeaf3b20164e Mon Sep 17 00:00:00 2001 From: Patrick Tonne Date: Tue, 28 Sep 2021 11:36:19 -0400 Subject: [PATCH 2/2] add wheel install to Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 45ac59c..3cf2a74 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM 482956169056.dkr.ecr.us-east-1.amazonaws.com/uw/python-postgres-build:v0.3 as build COPY canvas_manage_course/requirements/*.txt /code/ -RUN --mount=type=ssh,id=build_ssh_key ./python_venv/bin/pip3 install gunicorn && ./python_venv/bin/pip3 install -r aws.txt +RUN --mount=type=ssh,id=build_ssh_key ./python_venv/bin/pip3 install wheel gunicorn && ./python_venv/bin/pip3 install -r aws.txt COPY . /code/ RUN chmod a+x /code/docker-entrypoint.sh