~homeworkprod/byceps

0c8e01a841d26e55483f3d64d6b3d1ee1f926bdd — Jochen Kupperschmidt 3 years ago eff1187
Move orga team blueprint into `site` subpackage
4 files changed, 7 insertions(+), 7 deletions(-)

M byceps/application.py
R byceps/blueprints/{orga_team/__init__.py => site/orga_team/__init__.py}
R byceps/blueprints/{orga_team/templates/orga_team/index.html => site/orga_team/templates/site/orga_team/index.html}
R byceps/blueprints/{orga_team/views.py => site/orga_team/views.py}
M byceps/application.py => byceps/application.py +1 -1
@@ 116,7 116,7 @@ def _get_blueprints_site() -> Iterator[BlueprintReg]:
        ('site.consent',                '/consent'                  ),
        ('site.news',                   '/news'                     ),
        ('site.newsletter',             '/newsletter'               ),
        ('orga_team',                   '/orgas'                    ),
        ('site.orga_team',              '/orgas'                    ),
        ('party',                       None                        ),
        ('seating',                     '/seating'                  ),
        ('shop.order',                  '/shop'                     ),

R byceps/blueprints/orga_team/__init__.py => byceps/blueprints/site/orga_team/__init__.py +0 -0
R byceps/blueprints/orga_team/templates/orga_team/index.html => byceps/blueprints/site/orga_team/templates/site/orga_team/index.html +0 -0
R byceps/blueprints/orga_team/views.py => byceps/blueprints/site/orga_team/views.py +6 -6
@@ 1,6 1,6 @@
"""
byceps.blueprints.orga_team.views
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
byceps.blueprints.site.orga_team.views
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:Copyright: 2006-2020 Jochen Kupperschmidt
:License: Modified BSD, see LICENSE for details.


@@ 8,10 8,10 @@ byceps.blueprints.orga_team.views

from flask import abort, g

from ...services.orga_team import service as orga_team_service
from ...services.user import service as user_service
from ...util.framework.blueprint import create_blueprint
from ...util.framework.templating import templated
from ....services.orga_team import service as orga_team_service
from ....services.user import service as user_service
from ....util.framework.blueprint import create_blueprint
from ....util.framework.templating import templated


blueprint = create_blueprint('orga_team', __name__)