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 @@ - {{config['TITLE']}} + {{ config['TITLE'] }} @@ -14,16 +14,16 @@
{% block content %}{% endblock %}
diff --git a/app/templates/details.html b/app/main/templates/main/details.html similarity index 66% rename from app/templates/details.html rename to app/main/templates/main/details.html index bb6d6ff..8df0ed6 100644 --- a/app/templates/details.html +++ b/app/main/templates/main/details.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "main/base.html" %} {% block content %} @@ -31,27 +31,25 @@ {% for temp in temps %} - - {{ temp[0]|int }} - {{ temp[1]|round(2) }} - {{ temp[2]|round(2) }} - {{ temp[3]|round(2) }} - {{ temp[4]|round(2) }} - {{ temp[5]|round(2) }} - {{ temp[6]|round(2) }} - {{ temp[7]|round(2) }} - {{ temp[8]|round(2) }} - {{ temp[9]|round(2) }} - {{ temp[10]|round(2) }} - {{ temp[11]|round(2) }} - {{ temp[12]|round(2) }} - + + {{ temp[0]|int }} + {{ temp[1]|round(2) }} + {{ temp[2]|round(2) }} + {{ temp[3]|round(2) }} + {{ temp[4]|round(2) }} + {{ temp[5]|round(2) }} + {{ temp[6]|round(2) }} + {{ temp[7]|round(2) }} + {{ temp[8]|round(2) }} + {{ temp[9]|round(2) }} + {{ temp[10]|round(2) }} + {{ temp[11]|round(2) }} + {{ temp[12]|round(2) }} + {% endfor %} - -