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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
[
{
"pk": 1,
"model": "commitfest.patchstatus",
"fields": {
"statusstring": "Needs review",
"sortkey": 10
}
},
{
"pk": 2,
"model": "commitfest.patchstatus",
"fields": {
"statusstring": "Waiting on Author",
"sortkey": 15
}
},
{
"pk": 3,
"model": "commitfest.patchstatus",
"fields": {
"statusstring": "Ready for Committer",
"sortkey": 20
}
},
{
"pk": 4,
"model": "commitfest.patchstatus",
"fields": {
"statusstring": "Committed",
"sortkey": 25
}
},
{
"pk": 5,
"model": "commitfest.patchstatus",
"fields": {
"statusstring": "Moved to next CF",
"sortkey": 30
}
},
{
"pk": 6,
"model": "commitfest.patchstatus",
"fields": {
"statusstring": "Rejected",
"sortkey": 50
}
},
{
"pk": 7,
"model": "commitfest.patchstatus",
"fields": {
"statusstring": "Returned with Feedback",
"sortkey": 50
}
}
]
|