Files
notifications-admin/app/main/__init__.py
Chris Hill-Scott ba48707371 Add routing and pages for managing templates
So that users can see what it the flow is like to:
- add new templates
- edit existing templates
2016-01-06 09:39:42 +00:00

9 lines
211 B
Python

from flask import Blueprint
main = Blueprint('main', __name__)
from app.main.views import (
index, sign_in, register, two_factor, verify, sms, add_service, code_not_received, jobs, dashboard, templates
)