Commit Graph

6 Commits

Author SHA1 Message Date
04e1496c04 Fix SASS build issue take 3???
Some checks failed
Build and Publish Docker Container / build (push) Failing after 4m43s
2023-10-05 10:00:13 +01:00
9e8cf93b1a Try fix the sass build issue
Some checks failed
Build and Publish Docker Container / build (push) Failing after 4m30s
2023-10-04 17:20:58 +01:00
76f10abe76 An attempt at docker 2023-10-04 14:14:06 +01:00
58c1280309 Update Lecture-Recording relationship and add Lecture cancellation status
The commit introduces notable changes to the Lecture-Recording model relationship in our application and adds a new cancellation status to Lecture model.

Models Lecture and Recording previously had a belongs_to :recording and belongs_to :lecture relationship respectively. However, this setup was not reflecting the correct relationship between these two entities in the actual educational setup where a lecture can have a recording but a recording is always of a lecture. Thus, the relationship has been revised to has_one :recording in Lecture and belongs_to :lecture in Recording models.

Also, added the ability to mark a lecture as "cancelled". This addresses the requirement of representing real-world scenarios where lectures are sometimes cancelled. This cancellation status is then reflected in the Attendance Tracker view and is also handled in the ScrapePanoptoJob.

Additionally, new changes are reflected in the application's schema, migration files, admin dashboard, and stylesheets (for displaying cancelled lectures).
2023-10-02 09:47:46 +01:00
d14903fcb4 Some initial UI work 2023-09-29 18:53:43 +01:00
0d86f26613 Initial commit 2023-09-29 17:45:19 +01:00