diff options
author | Magnus Hagander | 2015-02-07 12:31:59 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-02-07 12:31:59 +0000 |
commit | 2bf6b909fd42f09ada9667264b9a0300f15503d9 (patch) | |
tree | 57c43a29d428f04b685081fdfe8e25063a0d1c16 /pgcommitfest/commitfest/fixtures | |
parent | d251d24f6e0d94871334deb070643f2b47caa918 (diff) |
Add status summary to top of each commitfest list
Quick overview of how many patches are in each status, as exist on
the old app.
Diffstat (limited to 'pgcommitfest/commitfest/fixtures')
-rw-r--r-- | pgcommitfest/commitfest/fixtures/initial_data.json | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/pgcommitfest/commitfest/fixtures/initial_data.json b/pgcommitfest/commitfest/fixtures/initial_data.json new file mode 100644 index 0000000..e33e662 --- /dev/null +++ b/pgcommitfest/commitfest/fixtures/initial_data.json @@ -0,0 +1,50 @@ +[ + { + "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": "Returned with Feedback", + "sortkey": 30 + } + }, + { + "pk": 6, + "model": "commitfest.patchstatus", + "fields": { + "statusstring": "Rejected", + "sortkey": 50 + } + } +]
\ No newline at end of file |