diff options
Diffstat (limited to 'contents/ui')
-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 { |