From 34e55acfe28b67c8afc84e1b7c8c96c14b2a708d Mon Sep 17 00:00:00 2001 From: Anatasof Wirapraja Date: Mon, 30 Sep 2019 16:27:46 +0700 Subject: `TaskDetails` loads `TicketAttachmentForm` --- TicketDetails.qml | 35 +++++++++++++++++++++++++++++------ larva.qrc | 1 + 2 files changed, 30 insertions(+), 6 deletions(-) diff --git a/TicketDetails.qml b/TicketDetails.qml index d5a2dc9..b7cb477 100644 --- a/TicketDetails.qml +++ b/TicketDetails.qml @@ -24,9 +24,31 @@ TaskDetailForm { anchors.left: parent.left anchors.leftMargin: 0 ticketSubject.text: subject - } + } + Label { + id: attachmentSeparator + color: "#000000" + text: qsTr("Attachments") + anchors.left: parent.left + anchors.leftMargin: 16 + anchors.top: ticketBriefForm.bottom + anchors.topMargin: 8 + font.weight: Font.Medium + font.pixelSize: 16 + font.family: "Work Sans" + } + + TicketAttachmentForm { + id: ticketAttachmentForm + anchors.top: attachmentSeparator.bottom + anchors.topMargin: 16 + anchors.right: parent.right + anchors.rightMargin: 16 + anchors.left: parent.left + anchors.leftMargin: 16 + } Label { - id: separator + id: activitiesSeparator color: "#000000" text: qsTr("Activities") font.weight: Font.Medium @@ -34,17 +56,18 @@ TaskDetailForm { font.family: "Work Sans" anchors.left: parent.left anchors.leftMargin: 16 - anchors.top: ticketBriefForm.bottom - anchors.topMargin: 8 + anchors.top: ticketAttachmentForm.bottom + anchors.topMargin: 24 } TaskHistoryForm { + id: taskHistoryForm anchors.right: parent.right anchors.rightMargin: 0 anchors.left: parent.left anchors.leftMargin: 0 - anchors.top: separator.bottom - anchors.topMargin: 8 + anchors.top: activitiesSeparator.bottom + anchors.topMargin: 16 } } } diff --git a/larva.qrc b/larva.qrc index fb1e7b9..0a7e71e 100644 --- a/larva.qrc +++ b/larva.qrc @@ -16,5 +16,6 @@ larva/features/CreateProfileForm.ui.qml larva/features/TaskBriefForm.ui.qml larva/features/TaskHistoryForm.ui.qml + larva/features/TicketAttachmentForm.ui.qml -- cgit v1.2.3