Introduced a new proposal status: proposed. Moved some templates around and created macros.

This commit is contained in:
Sander Ferdinand 2018-07-04 19:50:36 +02:00
parent 29e5a9eb95
commit b34d06d49e
11 changed files with 88 additions and 134 deletions

View file

@ -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