Complete virtual environment added to git. Updated all changes to file in frontend directory

This commit is contained in:
2022-03-11 13:07:43 +01:00
parent 70d04e52fe
commit 56309b11fe
1730 changed files with 336254 additions and 0 deletions
@@ -0,0 +1,50 @@
Metadata-Version: 2.1
Name: Flask-Bootstrap
Version: 3.3.7.1
Summary: An extension that includes Bootstrap in your project, without any boilerplate code.
Home-page: http://github.com/mbr/flask-bootstrap
Author: Marc Brinkmann
Author-email: git@marcbrinkmann.de
License: BSD
Platform: any
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
===============
Flask-Bootstrap
===============
.. image:: https://travis-ci.org/mbr/flask-bootstrap.png?branch=master
:target: https://travis-ci.org/mbr/flask-bootstrap
Flask-Bootstrap packages `Bootstrap
<http://getbootstrap.com>`_ into an extension that mostly consists
of a blueprint named 'bootstrap'. It can also create links to serve Bootstrap
from a CDN and works with no boilerplate code in your application.
Usage
-----
Here is an example::
from flask_bootstrap import Bootstrap
[...]
Bootstrap(app)
This makes some new templates available, containing blank pages that include all
bootstrap resources, and have predefined blocks where you can put your content.
As of version 3, Flask-Bootstrap has a `proper documentation
<http://pythonhosted.org /Flask-Bootstrap>`_, which you can check for more
details.
@@ -0,0 +1,36 @@
MANIFEST.in
README.rst
setup.cfg
setup.py
Flask_Bootstrap.egg-info/PKG-INFO
Flask_Bootstrap.egg-info/SOURCES.txt
Flask_Bootstrap.egg-info/dependency_links.txt
Flask_Bootstrap.egg-info/not-zip-safe
Flask_Bootstrap.egg-info/requires.txt
Flask_Bootstrap.egg-info/top_level.txt
flask_bootstrap/__init__.py
flask_bootstrap/forms.py
flask_bootstrap/nav.py
flask_bootstrap/static/jquery.js
flask_bootstrap/static/jquery.min.js
flask_bootstrap/static/jquery.min.map
flask_bootstrap/static/css/bootstrap-theme.css
flask_bootstrap/static/css/bootstrap-theme.css.map
flask_bootstrap/static/css/bootstrap-theme.min.css
flask_bootstrap/static/css/bootstrap.css
flask_bootstrap/static/css/bootstrap.css.map
flask_bootstrap/static/css/bootstrap.min.css
flask_bootstrap/static/fonts/glyphicons-halflings-regular.eot
flask_bootstrap/static/fonts/glyphicons-halflings-regular.svg
flask_bootstrap/static/fonts/glyphicons-halflings-regular.ttf
flask_bootstrap/static/fonts/glyphicons-halflings-regular.woff
flask_bootstrap/static/fonts/glyphicons-halflings-regular.woff2
flask_bootstrap/static/js/bootstrap.js
flask_bootstrap/static/js/bootstrap.min.js
flask_bootstrap/static/js/npm.js
flask_bootstrap/templates/bootstrap/base.html
flask_bootstrap/templates/bootstrap/fixes.html
flask_bootstrap/templates/bootstrap/google.html
flask_bootstrap/templates/bootstrap/pagination.html
flask_bootstrap/templates/bootstrap/utils.html
flask_bootstrap/templates/bootstrap/wtf.html
@@ -0,0 +1,35 @@
../flask_bootstrap/__init__.py
../flask_bootstrap/__pycache__/__init__.cpython-310.pyc
../flask_bootstrap/__pycache__/forms.cpython-310.pyc
../flask_bootstrap/__pycache__/nav.cpython-310.pyc
../flask_bootstrap/forms.py
../flask_bootstrap/nav.py
../flask_bootstrap/static/css/bootstrap-theme.css
../flask_bootstrap/static/css/bootstrap-theme.css.map
../flask_bootstrap/static/css/bootstrap-theme.min.css
../flask_bootstrap/static/css/bootstrap.css
../flask_bootstrap/static/css/bootstrap.css.map
../flask_bootstrap/static/css/bootstrap.min.css
../flask_bootstrap/static/fonts/glyphicons-halflings-regular.eot
../flask_bootstrap/static/fonts/glyphicons-halflings-regular.svg
../flask_bootstrap/static/fonts/glyphicons-halflings-regular.ttf
../flask_bootstrap/static/fonts/glyphicons-halflings-regular.woff
../flask_bootstrap/static/fonts/glyphicons-halflings-regular.woff2
../flask_bootstrap/static/jquery.js
../flask_bootstrap/static/jquery.min.js
../flask_bootstrap/static/jquery.min.map
../flask_bootstrap/static/js/bootstrap.js
../flask_bootstrap/static/js/bootstrap.min.js
../flask_bootstrap/static/js/npm.js
../flask_bootstrap/templates/bootstrap/base.html
../flask_bootstrap/templates/bootstrap/fixes.html
../flask_bootstrap/templates/bootstrap/google.html
../flask_bootstrap/templates/bootstrap/pagination.html
../flask_bootstrap/templates/bootstrap/utils.html
../flask_bootstrap/templates/bootstrap/wtf.html
PKG-INFO
SOURCES.txt
dependency_links.txt
not-zip-safe
requires.txt
top_level.txt
@@ -0,0 +1,3 @@
Flask>=0.8
dominate
visitor