mirror of https://git.48k.eu/ogcp
parent
29480012e4
commit
d84933f88e
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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):
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue