diff options
Diffstat (limited to 'app/main')
| -rw-r--r-- | app/main/__init__.py | 4 | ||||
| -rw-r--r-- | app/main/datasets.py | 4 | ||||
| -rw-r--r-- | app/main/demo.py | 4 | ||||
| -rw-r--r-- | app/main/email.py | 4 | ||||
| -rw-r--r-- | app/main/forms.py | 4 | ||||
| -rw-r--r-- | app/main/routes.py | 4 |
6 files changed, 24 insertions, 0 deletions
diff --git a/app/main/__init__.py b/app/main/__init__.py index 2612509..bfceafa 100644 --- a/app/main/__init__.py +++ b/app/main/__init__.py @@ -1,5 +1,9 @@ # -*- coding: utf-8 -*- +# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk> +# License: See LICENSE file +# Copyright: 2020 (c) The Alan Turing Institute + from flask import Blueprint bp = Blueprint('main', __name__) diff --git a/app/main/datasets.py b/app/main/datasets.py index 7245e51..8959b0d 100644 --- a/app/main/datasets.py +++ b/app/main/datasets.py @@ -1,5 +1,9 @@ # -*- coding: utf-8 -*- +# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk> +# License: See LICENSE file +# Copyright: 2020 (c) The Alan Turing Institute + import os import json import logging diff --git a/app/main/demo.py b/app/main/demo.py index 29687d6..2ee8171 100644 --- a/app/main/demo.py +++ b/app/main/demo.py @@ -1,5 +1,9 @@ # -*- coding: utf-8 -*- +# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk> +# License: See LICENSE file +# Copyright: 2020 (c) The Alan Turing Institute + import datetime import logging import markdown diff --git a/app/main/email.py b/app/main/email.py index c10e234..093b4f6 100644 --- a/app/main/email.py +++ b/app/main/email.py @@ -1,5 +1,9 @@ # -*- coding: utf-8 -*- +# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk> +# License: See LICENSE file +# Copyright: 2020 (c) The Alan Turing Institute + import json from flask import current_app, render_template diff --git a/app/main/forms.py b/app/main/forms.py index dcdffd3..af9c4c4 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1,5 +1,9 @@ # -*- coding: utf-8 -*- +# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk> +# License: See LICENSE file +# Copyright: 2020 (c) The Alan Turing Institute + from flask_wtf import FlaskForm from wtforms import SubmitField diff --git a/app/main/routes.py b/app/main/routes.py index 8d2aa6e..69e3937 100644 --- a/app/main/routes.py +++ b/app/main/routes.py @@ -1,5 +1,9 @@ # -*- coding: utf-8 -*- +# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk> +# License: See LICENSE file +# Copyright: 2020 (c) The Alan Turing Institute + import datetime import logging |
