summaryrefslogtreecommitdiff
path: root/TaskDetails.qml
diff options
context:
space:
mode:
Diffstat (limited to 'TaskDetails.qml')
-rw-r--r--TaskDetails.qml26
1 files changed, 26 insertions, 0 deletions
diff --git a/TaskDetails.qml b/TaskDetails.qml
index 94162f6..577f908 100644
--- a/TaskDetails.qml
+++ b/TaskDetails.qml
@@ -6,6 +6,32 @@ import "larva/features"
TaskDetailForm {
backButton.onClicked: pageView.pop()
+
+ StackView {
+ id: contentView
+ anchors.fill: parent
+
+ TaskBriefForm {
+ id: taskBriefForm
+ anchors.top: parent.top
+ anchors.topMargin: 0
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ ticketSubject.text: subject
+ }
+
+ TaskHistoryForm {
+ id: taskHistoryForm
+ anchors.right: parent.right
+ anchors.rightMargin: 0
+ anchors.left: parent.left
+ anchors.leftMargin: 0
+ anchors.top: taskBriefForm.bottom
+ anchors.topMargin: 0
+ }
+ }
}
/*##^##