diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-05-05 10:51:29 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-05-05 10:51:29 +0800 |
commit | a6620439f518a7deaf2bf059d47f25283fd6b65d (patch) | |
tree | cb4a5f33c378de88d753e1343bb877482ae0d95f | |
parent | c85150d7c9072a2f992aa2f3c68924102f96176e (diff) |
Placeholders now more fun
-rw-r--r-- | contents/ui/main.qml | 14 |
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 { |