From 90f69c2c142bcc2cc3d5b3dca7f8e9980a8262b7 Mon Sep 17 00:00:00 2001 From: Ross Date: Tue, 15 Dec 2020 23:07:06 +0000 Subject: [PATCH] start physics... --- anatomy/static/css/anatomy.css | 16 + anatomy/templates/anatomy/base.html | 3 + anatomy/templates/anatomy/mark.html | 2 +- physics/__init__.py | 0 physics/admin.py | 26 ++ physics/apps.py | 5 + physics/migrations/0001_initial.py | 72 +++ physics/migrations/__init__.py | 0 physics/models.py | 145 ++++++ physics/templates/physics/base.html | 59 +++ physics/templates/physics/cid_scores.html | 13 + physics/templates/physics/cid_selector.html | 18 + physics/templates/physics/exam_list.html | 30 ++ physics/templates/physics/exam_overview.html | 99 +++++ physics/templates/physics/exam_scores.html | 36 ++ physics/templates/physics/exam_take.html | 222 ++++++++++ physics/templates/physics/exams.html | 6 + physics/templates/physics/index.html | 10 + .../templates/physics/question_detail.html | 69 +++ physics/templates/physics/question_list.html | 20 + physics/tests.py | 3 + physics/urls.py | 30 ++ physics/views.py | 415 ++++++++++++++++++ rad/settings.py | 1 + rad/urls.py | 1 + templates/index.html | 1 + 26 files changed, 1301 insertions(+), 1 deletion(-) create mode 100644 physics/__init__.py create mode 100644 physics/admin.py create mode 100644 physics/apps.py create mode 100644 physics/migrations/0001_initial.py create mode 100644 physics/migrations/__init__.py create mode 100644 physics/models.py create mode 100644 physics/templates/physics/base.html create mode 100644 physics/templates/physics/cid_scores.html create mode 100644 physics/templates/physics/cid_selector.html create mode 100644 physics/templates/physics/exam_list.html create mode 100644 physics/templates/physics/exam_overview.html create mode 100644 physics/templates/physics/exam_scores.html create mode 100644 physics/templates/physics/exam_take.html create mode 100644 physics/templates/physics/exams.html create mode 100644 physics/templates/physics/index.html create mode 100644 physics/templates/physics/question_detail.html create mode 100644 physics/templates/physics/question_list.html create mode 100644 physics/tests.py create mode 100644 physics/urls.py create mode 100644 physics/views.py diff --git a/anatomy/static/css/anatomy.css b/anatomy/static/css/anatomy.css index 851ff809..ed219ad5 100644 --- a/anatomy/static/css/anatomy.css +++ b/anatomy/static/css/anatomy.css @@ -322,4 +322,20 @@ img.uploading:hover { .google-link { padding-left: 10px; font-size: smaller; +} + +#full-question-list-physics .abcde li { + padding: 0px; + clear: right; +} + +#full-question-list-physics li { + padding-bottom: 10px; +} + + +#full-question-list-physics { + user-select: none; + -moz-user-select: none; + -webkit-user-select: none; } \ No newline at end of file diff --git a/anatomy/templates/anatomy/base.html b/anatomy/templates/anatomy/base.html index f7e39d36..50f8652c 100644 --- a/anatomy/templates/anatomy/base.html +++ b/anatomy/templates/anatomy/base.html @@ -25,6 +25,9 @@