blob: 4295a9802409a7aa27f6c5b62a276830ffa5f93c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import QtQuick 2.15
import QtQuick.Controls 2.15
import "larva/features"
TaskDetailForm {
property string subject
backButton.onClicked: pageView.pop()
/*
ticketBriefForm {
ticketSubject.text: subject
ticketCreator.text: creator
}
*/
listView {
height: 1000
model: historyList
delegate: TaskHistoryForm {
creatorText.text: creator
ticketDescription.text: content
ticketDate.text: created
}
}
}
|