mirror of
https://git.wownero.com/wownero/wownero-funding-system.git
synced 2024-08-15 00:53:45 +00:00
Introduced a new proposal status: proposed. Moved some templates around and created macros.
This commit is contained in:
parent
29e5a9eb95
commit
b34d06d49e
11 changed files with 88 additions and 134 deletions
|
@ -1,5 +1,6 @@
|
|||
import logging
|
||||
import socket
|
||||
import collections
|
||||
import os
|
||||
|
||||
|
||||
|
@ -33,3 +34,12 @@ FUNDING_CATEGORIES = [
|
|||
'misc',
|
||||
'design'
|
||||
]
|
||||
|
||||
FUNDING_STATUSES = collections.OrderedDict()
|
||||
FUNDING_STATUSES[0] = 'disabled'
|
||||
FUNDING_STATUSES[1] = 'proposal'
|
||||
FUNDING_STATUSES[2] = 'funding'
|
||||
FUNDING_STATUSES[3] = 'wip'
|
||||
FUNDING_STATUSES[4] = 'completed'
|
||||
|
||||
USER_REG_DISABLED = False
|
Loading…
Add table
Add a link
Reference in a new issue