diff options
Diffstat (limited to 'ogcp')
-rw-r--r-- | ogcp/__init__.py | 7 | ||||
-rw-r--r-- | ogcp/forms/action_forms.py | 7 | ||||
-rw-r--r-- | ogcp/forms/auth.py | 7 | ||||
-rw-r--r-- | ogcp/models.py | 7 | ||||
-rw-r--r-- | ogcp/og_server.py | 7 | ||||
-rw-r--r-- | ogcp/views.py | 7 |
6 files changed, 42 insertions, 0 deletions
diff --git a/ogcp/__init__.py b/ogcp/__init__.py index 8c7c732..23d6769 100644 --- a/ogcp/__init__.py +++ b/ogcp/__init__.py @@ -1,3 +1,10 @@ +# Copyright (C) 2020-2021 Soleta Networks <info@soleta.eu> +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero General Public License as published by the +# Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + from flask_wtf.csrf import CSRFProtect from flask_bootstrap import Bootstrap from flask_babel import Babel diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py index 54b2c32..159c55a 100644 --- a/ogcp/forms/action_forms.py +++ b/ogcp/forms/action_forms.py @@ -1,3 +1,10 @@ +# Copyright (C) 2020-2021 Soleta Networks <info@soleta.eu> +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero General Public License as published by the +# Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + from wtforms import ( Form, SubmitField, HiddenField, SelectField, BooleanField, IntegerField, StringField, RadioField diff --git a/ogcp/forms/auth.py b/ogcp/forms/auth.py index 8c84e84..3377cc3 100644 --- a/ogcp/forms/auth.py +++ b/ogcp/forms/auth.py @@ -1,3 +1,10 @@ +# Copyright (C) 2020-2021 Soleta Networks <info@soleta.eu> +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero General Public License as published by the +# Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + from wtforms import ( Form, SubmitField, HiddenField, SelectField, BooleanField, IntegerField, StringField, RadioField, PasswordField diff --git a/ogcp/models.py b/ogcp/models.py index 668c623..943ed94 100644 --- a/ogcp/models.py +++ b/ogcp/models.py @@ -1,3 +1,10 @@ +# Copyright (C) 2020-2021 Soleta Networks <info@soleta.eu> +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero General Public License as published by the +# Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + from flask_login import UserMixin class User(UserMixin): diff --git a/ogcp/og_server.py b/ogcp/og_server.py index 2ea0363..0d7fdf8 100644 --- a/ogcp/og_server.py +++ b/ogcp/og_server.py @@ -1,3 +1,10 @@ +# Copyright (C) 2020-2021 Soleta Networks <info@soleta.eu> +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero General Public License as published by the +# Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + from ogcp import app import requests diff --git a/ogcp/views.py b/ogcp/views.py index 794400d..d49391f 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -1,3 +1,10 @@ +# Copyright (C) 2020-2021 Soleta Networks <info@soleta.eu> +# +# This program is free software: you can redistribute it and/or modify it under +# the terms of the GNU Affero General Public License as published by the +# Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. + from flask import ( g, render_template, url_for, flash, redirect, request, jsonify, make_response ) |