diff --git a/app/__init__.py b/app/__init__.py index 8ada18a..8921b18 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1,5 +1,6 @@ from flask import Flask from flask.ext.sqlalchemy import SQLAlchemy + from config import config @@ -17,4 +18,3 @@ def create_app(config_name): app.register_blueprint(main_blueprint) return app - diff --git a/app/main/__init__.py b/app/main/__init__.py index a4b038e..50a1a99 100644 --- a/app/main/__init__.py +++ b/app/main/__init__.py @@ -1,7 +1,7 @@ from flask import Blueprint -main = Blueprint('main', __name__) +main = Blueprint('main', __name__, template_folder='templates') from . import views diff --git a/app/main/forms.py b/app/main/forms.py index 603e6dc..c50d848 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -2,9 +2,10 @@ from flask_wtf import Form from wtforms import IntegerField from wtforms.validators import NumberRange, Required from wtforms.ext.sqlalchemy.fields import QuerySelectField -from app.models import Community, Dataset, Temperature from sqlalchemy import func +from .models import Community, Dataset, Temperature + class AKIYearField(IntegerField): def pre_validate(self, form): diff --git a/app/models.py b/app/main/models.py similarity index 99% rename from app/models.py rename to app/main/models.py index cbf073e..808e4f8 100644 --- a/app/models.py +++ b/app/main/models.py @@ -1,4 +1,4 @@ -from . import db +from app import db from sqlalchemy.ext.hybrid import hybrid_property diff --git a/app/templates/_formhelpers.html b/app/main/templates/main/_formhelpers.html similarity index 100% rename from app/templates/_formhelpers.html rename to app/main/templates/main/_formhelpers.html diff --git a/app/templates/base.html b/app/main/templates/main/base.html similarity index 56% rename from app/templates/base.html rename to app/main/templates/main/base.html index 598b2e6..44b046b 100644 --- a/app/templates/base.html +++ b/app/main/templates/main/base.html @@ -1,7 +1,7 @@
-