diff options
Diffstat (limited to 'TicketDetails.qml')
-rw-r--r-- | TicketDetails.qml | 35 |
1 files changed, 29 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 } } } |