summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fkfd@fkfd.me>2022-05-05 10:51:29 +0800
committerFrederick Yin <fkfd@fkfd.me>2022-05-05 10:51:29 +0800
commita6620439f518a7deaf2bf059d47f25283fd6b65d (patch)
treecb4a5f33c378de88d753e1343bb877482ae0d95f
parentc85150d7c9072a2f992aa2f3c68924102f96176e (diff)
Placeholders now more fun
-rw-r--r--contents/ui/main.qml14
1 files changed, 9 insertions, 5 deletions
diff --git a/contents/ui/main.qml b/contents/ui/main.qml
index 58e3faf..9e330cc 100644
--- a/contents/ui/main.qml
+++ b/contents/ui/main.qml
@@ -124,14 +124,16 @@ Item {
ListModel {
id: announcementsModel
+ /* Uncomment when debugging layout
ListElement {
type: "announcement"
course: "CS101"
- title: "Title"
- url: "https://xkcd.com"
+ title: "Code quality"
+ url: "https://xkcd.com/1513"
important: true
activityId: 0
}
+ */
}
ScrollView {
@@ -157,16 +159,18 @@ Item {
ListModel {
id: assignmentsModel
+ /* Uncomment when debugging layout
ListElement {
type: "assignment"
- course: "EE210"
- title: "Title"
+ course: "EE201"
+ title: "Circuit diagram"
dueAt: "2022-04-10T15:59:59Z"
submitted: true
- url: "https://xkcd.com"
+ url: "https://xkcd.com/730"
important: true
activityId: 1
}
+ */
}
ScrollView {