
* remove holes * don't import class that doesn't exist * remove subs in template code * remove subs_created * fix sticky bug * uh... i think this will fix it???? * fix stupid nearly ungrokkable nesting error * ... * .... * .... * *sigh* * .............................i think i got it. * Revert ".............................i think i got it." This reverts commit419a545875
. * Revert "*sigh*" This reverts commitfcfc9d7995
. * Revert "...." This reverts commite200c8f6f0
. * Revert "...." This reverts commit681db8cb02
. * Revert "..." This reverts commitc54372b9ff
. * Revert "fix stupid nearly ungrokkable nesting error" This reverts commite202fd774c
. * Revert "uh... i think this will fix it????" This reverts commite4d9366093
. * readd missing endif * fix email templates. * fix frontpage listing * some minor fixes wrt saving * fix some listing errors * Remove more references to holes system A couple of these came from the merge of #554. A few others were just left in the templates and presumably hard to catch on the first removal pass. * remove unnecessary lazy * Add migration Tested. Very sensitive to order. I wound up borrowing the statement order we used for deleting sub rows on upstream (manually, of course). --------- Co-authored-by: TLSM <duolsm@outlook.com>
22 lines
548 B
Python
22 lines
548 B
Python
from files.__main__ import app
|
|
from files.helpers.config.const import FEATURES
|
|
|
|
from .admin import *
|
|
from .comments import *
|
|
from .errors import *
|
|
from .reporting import *
|
|
from .front import *
|
|
from .login import *
|
|
from .oauth import *
|
|
from .posts import *
|
|
from .search import *
|
|
from .settings import *
|
|
from .static import *
|
|
from .users import *
|
|
from .votes import *
|
|
from .feeds import *
|
|
if FEATURES['AWARDS']:
|
|
from .awards import * # disable entirely pending possible future use of coins
|
|
from .volunteer import *
|
|
if app.debug:
|
|
from .dev import *
|