├── IMS ├── __init__.py └── __pycache__ │ ├── urls.cpython-310.pyc │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── wsgi.cpython-37.pyc │ ├── wsgi.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── settings.cpython-37.pyc │ ├── settings.cpython-38.pyc │ ├── __init__.cpython-310.pyc │ └── settings.cpython-310.pyc ├── login ├── __init__.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── __init__.cpython-38.pyc ├── tests.py ├── apps.py ├── __pycache__ │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── forms.cpython-37.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-310.pyc │ ├── views.cpython-310.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ └── models.cpython-310.pyc └── admin.py ├── signup ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── apps.py ├── urls.py ├── __pycache__ │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-37.pyc │ ├── forms.cpython-38.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── views.cpython-310.pyc │ └── __init__.cpython-310.pyc └── admin.py ├── upload ├── __init__.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── admin.py ├── apps.py ├── urls.py └── __pycache__ │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-37.pyc │ ├── forms.cpython-38.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── views.cpython-310.pyc │ └── __init__.cpython-310.pyc ├── dashboard ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── apps.py └── __pycache__ │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-37.pyc │ ├── forms.cpython-38.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── views.cpython-310.pyc │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-37.pyc │ └── __init__.cpython-38.pyc ├── myrequest ├── __init__.py ├── migrations │ └── __init__.py ├── models.py ├── admin.py ├── tests.py ├── apps.py ├── urls.py └── __pycache__ │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── views.cpython-310.pyc │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-37.pyc │ └── __init__.cpython-38.pyc ├── myreturn ├── __init__.py ├── migrations │ └── __init__.py ├── models.py ├── admin.py ├── tests.py ├── apps.py ├── urls.py └── __pycache__ │ ├── admin.cpython-310.pyc │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── views.cpython-310.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── models.cpython-310.pyc │ └── __init__.cpython-310.pyc ├── newrequest ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── apps.py ├── urls.py ├── __pycache__ │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── forms.cpython-37.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-310.pyc │ ├── views.cpython-310.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ └── models.cpython-310.pyc └── admin.py ├── userprofile ├── __init__.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── admin.py ├── apps.py └── __pycache__ │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── urls.cpython-310.pyc │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── views.cpython-310.pyc │ └── __init__.cpython-310.pyc ├── adminprofile ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── apps.py └── __pycache__ │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── forms.cpython-37.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-310.pyc │ ├── views.cpython-310.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-37.pyc │ └── __init__.cpython-38.pyc ├── adminrequest ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── apps.py ├── __pycache__ │ ├── urls.cpython-37.pyc │ ├── urls.cpython-38.pyc │ ├── admin.cpython-310.pyc │ ├── admin.cpython-37.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-310.pyc │ ├── forms.cpython-310.pyc │ ├── forms.cpython-37.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-310.pyc │ ├── models.cpython-37.pyc │ ├── models.cpython-38.pyc │ ├── urls.cpython-310.pyc │ ├── views.cpython-310.pyc │ ├── views.cpython-37.pyc │ ├── views.cpython-38.pyc │ ├── __init__.cpython-310.pyc │ ├── __init__.cpython-37.pyc │ └── __init__.cpython-38.pyc └── admin.py ├── static ├── signup │ ├── js │ │ └── main.js │ ├── scss │ │ └── common │ │ │ └── variables.scss │ ├── images │ │ ├── signin-image.jpg │ │ └── signup-image.jpg │ └── fonts │ │ └── poppins │ │ ├── poppins-v5-latin-300.eot │ │ ├── poppins-v5-latin-300.ttf │ │ ├── poppins-v5-latin-500.eot │ │ ├── poppins-v5-latin-500.ttf │ │ ├── poppins-v5-latin-600.eot │ │ ├── poppins-v5-latin-600.ttf │ │ ├── poppins-v5-latin-700.eot │ │ ├── poppins-v5-latin-700.ttf │ │ ├── poppins-v5-latin-800.eot │ │ ├── poppins-v5-latin-800.ttf │ │ ├── poppins-v5-latin-900.eot │ │ └── poppins-v5-latin-900.ttf ├── vendor │ ├── bootstrap │ │ └── scss │ │ │ ├── utilities │ │ │ └── _clearfix.scss │ │ │ ├── _media.scss │ │ │ └── mixins │ │ │ └── _clearfix.scss │ └── fontawesome-free │ │ └── svgs │ │ └── solid │ │ └── square-full.svg ├── js │ └── demo │ │ └── datatables-demo.js └── login │ └── home.css ├── staticfiles ├── signup │ ├── js │ │ └── main.js │ ├── scss │ │ └── common │ │ │ └── variables.scss │ └── images │ │ ├── signin-image.jpg │ │ └── signup-image.jpg ├── vendor │ ├── bootstrap │ │ └── scss │ │ │ ├── utilities │ │ │ └── _clearfix.scss │ │ │ ├── _media.scss │ │ │ └── mixins │ │ │ └── _clearfix.scss │ └── fontawesome-free │ │ └── svgs │ │ └── solid │ │ └── square-full.svg ├── js │ └── demo │ │ └── datatables-demo.js ├── login │ └── home.css └── admin │ └── fonts │ ├── Roboto-Bold-webfont.woff │ ├── Roboto-Light-webfont.woff │ └── Roboto-Regular-webfont.woff ├── templates └── adminrequest │ └── index.html ├── venv ├── Lib │ └── site-packages │ │ ├── mysite │ │ └── __init__.py │ │ ├── polls │ │ └── __init__.py │ │ ├── django │ │ ├── core │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ │ └── __init__.py │ │ │ ├── servers │ │ │ │ └── __init__.py │ │ │ ├── cache │ │ │ │ └── backends │ │ │ │ │ └── __init__.py │ │ │ ├── checks │ │ │ │ ├── security │ │ │ │ │ └── __init__.py │ │ │ │ └── compatibility │ │ │ │ │ └── __init__.py │ │ │ ├── mail │ │ │ │ └── backends │ │ │ │ │ └── __init__.py │ │ │ └── files │ │ │ │ └── __init__.py │ │ ├── utils │ │ │ └── __init__.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── gis │ │ │ │ ├── db │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── backends │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── mysql │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── oracle │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ ├── postgis │ │ │ │ │ │ └── __init__.py │ │ │ │ │ │ └── spatialite │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── gdal │ │ │ │ │ ├── raster │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── prototypes │ │ │ │ │ │ └── __init__.py │ │ │ │ ├── serializers │ │ │ │ │ └── __init__.py │ │ │ │ ├── __init__.py │ │ │ │ └── geos │ │ │ │ │ └── error.py │ │ │ ├── admin │ │ │ │ ├── views │ │ │ │ │ └── __init__.py │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ ├── templatetags │ │ │ │ │ └── __init__.py │ │ │ │ └── templates │ │ │ │ │ └── admin │ │ │ │ │ └── widgets │ │ │ │ │ ├── radio.html │ │ │ │ │ └── many_to_many_raw_id.html │ │ │ ├── auth │ │ │ │ ├── handlers │ │ │ │ │ └── __init__.py │ │ │ │ └── migrations │ │ │ │ │ └── __init__.py │ │ │ ├── sessions │ │ │ │ ├── backends │ │ │ │ │ └── __init__.py │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── sites │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── contenttypes │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── flatpages │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ ├── templatetags │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── humanize │ │ │ │ ├── templatetags │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── redirects │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── staticfiles │ │ │ │ ├── templatetags │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── admindocs │ │ │ │ └── __init__.py │ │ │ ├── postgres │ │ │ │ ├── __init__.py │ │ │ │ ├── aggregates │ │ │ │ │ └── __init__.py │ │ │ │ ├── jinja2 │ │ │ │ │ └── postgres │ │ │ │ │ │ └── widgets │ │ │ │ │ │ └── split_array.html │ │ │ │ ├── templates │ │ │ │ │ └── postgres │ │ │ │ │ │ └── widgets │ │ │ │ │ │ └── split_array.html │ │ │ │ └── fields │ │ │ │ │ └── utils.py │ │ │ └── syndication │ │ │ │ └── __init__.py │ │ ├── db │ │ │ ├── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── base │ │ │ │ │ └── __init__.py │ │ │ │ ├── dummy │ │ │ │ │ └── __init__.py │ │ │ │ ├── mysql │ │ │ │ │ └── __init__.py │ │ │ │ ├── oracle │ │ │ │ │ └── __init__.py │ │ │ │ ├── sqlite3 │ │ │ │ │ └── __init__.py │ │ │ │ ├── postgresql │ │ │ │ │ └── __init__.py │ │ │ │ ├── postgresql_psycopg2 │ │ │ │ │ ├── base.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── schema.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── creation.py │ │ │ │ │ ├── features.py │ │ │ │ │ ├── operations.py │ │ │ │ │ └── introspection.py │ │ │ │ └── signals.py │ │ │ └── migrations │ │ │ │ └── __init__.py │ │ ├── middleware │ │ │ └── __init__.py │ │ ├── conf │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── __init__.py │ │ │ │ ├── az │ │ │ │ │ └── __init__.py │ │ │ │ ├── bg │ │ │ │ │ └── __init__.py │ │ │ │ ├── bn │ │ │ │ │ └── __init__.py │ │ │ │ ├── bs │ │ │ │ │ └── __init__.py │ │ │ │ ├── ca │ │ │ │ │ └── __init__.py │ │ │ │ ├── cs │ │ │ │ │ └── __init__.py │ │ │ │ ├── cy │ │ │ │ │ └── __init__.py │ │ │ │ ├── da │ │ │ │ │ └── __init__.py │ │ │ │ ├── de │ │ │ │ │ └── __init__.py │ │ │ │ ├── el │ │ │ │ │ └── __init__.py │ │ │ │ ├── en │ │ │ │ │ └── __init__.py │ │ │ │ ├── eo │ │ │ │ │ └── __init__.py │ │ │ │ ├── es │ │ │ │ │ └── __init__.py │ │ │ │ ├── et │ │ │ │ │ └── __init__.py │ │ │ │ ├── eu │ │ │ │ │ └── __init__.py │ │ │ │ ├── fa │ │ │ │ │ └── __init__.py │ │ │ │ ├── fi │ │ │ │ │ └── __init__.py │ │ │ │ ├── fr │ │ │ │ │ └── __init__.py │ │ │ │ ├── fy │ │ │ │ │ └── __init__.py │ │ │ │ ├── ga │ │ │ │ │ └── __init__.py │ │ │ │ ├── gd │ │ │ │ │ └── __init__.py │ │ │ │ ├── gl │ │ │ │ │ └── __init__.py │ │ │ │ ├── he │ │ │ │ │ └── __init__.py │ │ │ │ ├── hi │ │ │ │ │ └── __init__.py │ │ │ │ ├── hr │ │ │ │ │ └── __init__.py │ │ │ │ ├── hu │ │ │ │ │ └── __init__.py │ │ │ │ ├── id │ │ │ │ │ └── __init__.py │ │ │ │ ├── is │ │ │ │ │ └── __init__.py │ │ │ │ ├── it │ │ │ │ │ └── __init__.py │ │ │ │ ├── ja │ │ │ │ │ └── __init__.py │ │ │ │ ├── ka │ │ │ │ │ └── __init__.py │ │ │ │ ├── km │ │ │ │ │ └── __init__.py │ │ │ │ ├── kn │ │ │ │ │ └── __init__.py │ │ │ │ ├── ko │ │ │ │ │ └── __init__.py │ │ │ │ ├── lt │ │ │ │ │ └── __init__.py │ │ │ │ ├── lv │ │ │ │ │ └── __init__.py │ │ │ │ ├── mk │ │ │ │ │ └── __init__.py │ │ │ │ ├── ml │ │ │ │ │ └── __init__.py │ │ │ │ ├── mn │ │ │ │ │ └── __init__.py │ │ │ │ ├── nb │ │ │ │ │ └── __init__.py │ │ │ │ ├── nl │ │ │ │ │ └── __init__.py │ │ │ │ ├── nn │ │ │ │ │ └── __init__.py │ │ │ │ ├── pl │ │ │ │ │ └── __init__.py │ │ │ │ ├── pt │ │ │ │ │ └── __init__.py │ │ │ │ ├── ro │ │ │ │ │ └── __init__.py │ │ │ │ ├── ru │ │ │ │ │ └── __init__.py │ │ │ │ ├── sk │ │ │ │ │ └── __init__.py │ │ │ │ ├── sl │ │ │ │ │ └── __init__.py │ │ │ │ ├── sq │ │ │ │ │ └── __init__.py │ │ │ │ ├── sr │ │ │ │ │ └── __init__.py │ │ │ │ ├── sv │ │ │ │ │ └── __init__.py │ │ │ │ ├── ta │ │ │ │ │ └── __init__.py │ │ │ │ ├── te │ │ │ │ │ └── __init__.py │ │ │ │ ├── th │ │ │ │ │ └── __init__.py │ │ │ │ ├── tr │ │ │ │ │ └── __init__.py │ │ │ │ ├── uk │ │ │ │ │ └── __init__.py │ │ │ │ ├── vi │ │ │ │ │ └── __init__.py │ │ │ │ ├── de_CH │ │ │ │ │ └── __init__.py │ │ │ │ ├── en_AU │ │ │ │ │ └── __init__.py │ │ │ │ ├── en_GB │ │ │ │ │ └── __init__.py │ │ │ │ ├── es_AR │ │ │ │ │ └── __init__.py │ │ │ │ ├── es_CO │ │ │ │ │ └── __init__.py │ │ │ │ ├── es_MX │ │ │ │ │ └── __init__.py │ │ │ │ ├── es_NI │ │ │ │ │ └── __init__.py │ │ │ │ ├── es_PR │ │ │ │ │ └── __init__.py │ │ │ │ ├── pt_BR │ │ │ │ │ └── __init__.py │ │ │ │ ├── sr_Latn │ │ │ │ │ └── __init__.py │ │ │ │ ├── zh_Hans │ │ │ │ │ └── __init__.py │ │ │ │ └── zh_Hant │ │ │ │ │ └── __init__.py │ │ │ ├── app_template │ │ │ │ ├── __init__.py-tpl │ │ │ │ ├── migrations │ │ │ │ │ └── __init__.py-tpl │ │ │ │ ├── models.py-tpl │ │ │ │ ├── tests.py-tpl │ │ │ │ ├── admin.py-tpl │ │ │ │ └── views.py-tpl │ │ │ └── project_template │ │ │ │ └── project_name │ │ │ │ └── __init__.py-tpl │ │ ├── template │ │ │ ├── loaders │ │ │ │ └── __init__.py │ │ │ └── backends │ │ │ │ └── __init__.py │ │ ├── templatetags │ │ │ └── __init__.py │ │ ├── views │ │ │ ├── decorators │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── forms │ │ │ ├── jinja2 │ │ │ │ └── django │ │ │ │ │ └── forms │ │ │ │ │ └── widgets │ │ │ │ │ ├── date.html │ │ │ │ │ ├── email.html │ │ │ │ │ ├── file.html │ │ │ │ │ ├── hidden.html │ │ │ │ │ ├── number.html │ │ │ │ │ ├── text.html │ │ │ │ │ ├── time.html │ │ │ │ │ ├── url.html │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── datetime.html │ │ │ │ │ ├── password.html │ │ │ │ │ ├── radio.html │ │ │ │ │ ├── select_date.html │ │ │ │ │ ├── checkbox_option.html │ │ │ │ │ ├── multiple_hidden.html │ │ │ │ │ ├── radio_option.html │ │ │ │ │ ├── splitdatetime.html │ │ │ │ │ ├── checkbox_select.html │ │ │ │ │ ├── splithiddendatetime.html │ │ │ │ │ └── multiwidget.html │ │ │ └── templates │ │ │ │ └── django │ │ │ │ └── forms │ │ │ │ └── widgets │ │ │ │ ├── date.html │ │ │ │ ├── file.html │ │ │ │ ├── text.html │ │ │ │ ├── time.html │ │ │ │ ├── url.html │ │ │ │ ├── checkbox.html │ │ │ │ ├── datetime.html │ │ │ │ ├── email.html │ │ │ │ ├── hidden.html │ │ │ │ ├── number.html │ │ │ │ ├── password.html │ │ │ │ ├── radio.html │ │ │ │ ├── radio_option.html │ │ │ │ ├── select_date.html │ │ │ │ ├── splitdatetime.html │ │ │ │ ├── checkbox_option.html │ │ │ │ ├── checkbox_select.html │ │ │ │ ├── multiple_hidden.html │ │ │ │ └── splithiddendatetime.html │ │ └── apps │ │ │ └── __init__.py │ │ ├── pyexcel │ │ ├── ext │ │ │ └── __init__.py │ │ ├── plugins │ │ │ └── sources │ │ │ │ └── pydata │ │ │ │ └── __init__.py │ │ ├── __version__.py │ │ └── docstrings │ │ │ └── garbagecollector.py │ │ ├── et_xmlfile │ │ └── tests │ │ │ └── __init__.py │ │ ├── tablib │ │ └── packages │ │ │ ├── __init__.py │ │ │ ├── dbfpy │ │ │ └── __init__.py │ │ │ └── dbfpy3 │ │ │ └── __init__.py │ │ ├── pytz-2019.1.dist-info │ │ ├── zip-safe │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── Django-2.2.2.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ ├── entry_points.txt │ │ └── WHEEL │ │ ├── Pillow-6.1.0.dist-info │ │ ├── INSTALLER │ │ ├── zip-safe │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── PyYAML-5.1.1.dist-info │ │ ├── INSTALLER │ │ └── WHEEL │ │ ├── import_export │ │ ├── templatetags │ │ │ └── __init__.py │ │ ├── __init__.py │ │ ├── models.py │ │ └── formats │ │ │ └── __init__.py │ │ ├── jdcal-1.4.1.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── lml-0.0.9.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── xlrd-1.2.0.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── xlwt-1.3.0.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── defusedxml-0.6.0.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── pyexcel-0.5.14.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── pyexcel_io-0.5.18.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── pyexcel_io │ │ └── database │ │ │ ├── exporters │ │ │ └── __init__.py │ │ │ └── importers │ │ │ └── __init__.py │ │ ├── sqlparse-0.3.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── entry_points.txt │ │ ├── tablib-0.13.0.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ │ ├── backports.csv-1.0.7.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── namespace_packages.txt │ │ ├── django_excel-0.0.10.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── odfpy-1.4.0-py3.7.egg-info │ │ ├── top_level.txt │ │ ├── dependency_links.txt │ │ └── requires.txt │ │ ├── pip-19.0.3-py3.7.egg │ │ ├── EGG-INFO │ │ │ ├── not-zip-safe │ │ │ ├── dependency_links.txt │ │ │ └── top_level.txt │ │ └── pip │ │ │ ├── _internal │ │ │ ├── utils │ │ │ │ └── __init__.py │ │ │ ├── operations │ │ │ │ └── __init__.py │ │ │ └── models │ │ │ │ └── __init__.py │ │ │ ├── _vendor │ │ │ ├── urllib3 │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _securetransport │ │ │ │ │ │ └── __init__.py │ │ │ │ └── packages │ │ │ │ │ └── backports │ │ │ │ │ └── __init__.py │ │ │ ├── chardet │ │ │ │ └── cli │ │ │ │ │ └── __init__.py │ │ │ ├── html5lib │ │ │ │ └── filters │ │ │ │ │ └── __init__.py │ │ │ ├── msgpack │ │ │ │ └── _version.py │ │ │ ├── idna │ │ │ │ ├── package_data.py │ │ │ │ └── __init__.py │ │ │ ├── certifi │ │ │ │ ├── __main__.py │ │ │ │ └── __init__.py │ │ │ └── pep517 │ │ │ │ └── __init__.py │ │ │ └── __init__.py │ │ ├── pyexcel_webio-0.1.4.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── setuptools.pth │ │ ├── django_import_export-1.2.0.dist-info │ │ ├── INSTALLER │ │ └── top_level.txt │ │ ├── openpyxl-2.6.2-py3.7.egg-info │ │ ├── dependency_links.txt │ │ ├── top_level.txt │ │ └── requires.txt │ │ ├── xlrd │ │ └── info.py │ │ ├── et_xmlfile-1.0.1-py3.7.egg-info │ │ ├── dependency_links.txt │ │ └── top_level.txt │ │ ├── texttable-1.6.2-py3.7.egg-info │ │ ├── dependency_links.txt │ │ └── top_level.txt │ │ ├── lml │ │ └── _version.py │ │ ├── PIL │ │ ├── __main__.py │ │ ├── _version.py │ │ ├── _webp.cp37-win32.pyd │ │ ├── _imaging.cp37-win32.pyd │ │ ├── _imagingft.cp37-win32.pyd │ │ └── _imagingtk.cp37-win32.pyd │ │ ├── diff_match_patch-20181111-py3.7.egg-info │ │ ├── dependency_links.txt │ │ └── top_level.txt │ │ ├── openpyxl │ │ ├── reader │ │ │ └── __init__.py │ │ ├── pivot │ │ │ └── __init__.py │ │ ├── writer │ │ │ └── __init__.py │ │ ├── worksheet │ │ │ └── __init__.py │ │ ├── packaging │ │ │ └── __init__.py │ │ ├── formatting │ │ │ └── __init__.py │ │ ├── comments │ │ │ └── __init__.py │ │ ├── drawing │ │ │ └── __init__.py │ │ └── formula │ │ │ └── __init__.py │ │ ├── easy-install.pth │ │ ├── pytz │ │ └── zoneinfo │ │ │ ├── GB │ │ │ ├── NZ │ │ │ ├── CET │ │ │ ├── Cuba │ │ │ ├── EET │ │ │ ├── EST │ │ │ ├── Egypt │ │ │ ├── Eire │ │ │ ├── HST │ │ │ ├── Iran │ │ │ ├── Japan │ │ │ ├── Libya │ │ │ ├── MET │ │ │ ├── MST │ │ │ ├── PRC │ │ │ ├── ROC │ │ │ ├── ROK │ │ │ ├── W-SU │ │ │ ├── WET │ │ │ ├── CST6CDT │ │ │ ├── EST5EDT │ │ │ ├── GB-Eire │ │ │ ├── Iceland │ │ │ ├── Israel │ │ │ ├── Jamaica │ │ │ ├── MST7MDT │ │ │ ├── NZ-CHAT │ │ │ ├── Navajo │ │ │ ├── PST8PDT │ │ │ ├── Poland │ │ │ ├── Turkey │ │ │ ├── Asia │ │ │ ├── Aden │ │ │ ├── Amman │ │ │ ├── Aqtau │ │ │ ├── Baku │ │ │ ├── Chita │ │ │ ├── Dacca │ │ │ ├── Dhaka │ │ │ ├── Dili │ │ │ ├── Dubai │ │ │ ├── Gaza │ │ │ ├── Hovd │ │ │ ├── Kabul │ │ │ ├── Macao │ │ │ ├── Macau │ │ │ ├── Omsk │ │ │ ├── Oral │ │ │ ├── Qatar │ │ │ ├── Seoul │ │ │ ├── Tokyo │ │ │ ├── Tomsk │ │ │ ├── Almaty │ │ │ ├── Anadyr │ │ │ ├── Aqtobe │ │ │ ├── Atyrau │ │ │ ├── Baghdad │ │ │ ├── Bahrain │ │ │ ├── Bangkok │ │ │ ├── Barnaul │ │ │ ├── Beirut │ │ │ ├── Bishkek │ │ │ ├── Brunei │ │ │ ├── Colombo │ │ │ ├── Harbin │ │ │ ├── Hebron │ │ │ ├── Irkutsk │ │ │ ├── Jakarta │ │ │ ├── Karachi │ │ │ ├── Kashgar │ │ │ ├── Kolkata │ │ │ ├── Kuching │ │ │ ├── Kuwait │ │ │ ├── Magadan │ │ │ ├── Manila │ │ │ ├── Muscat │ │ │ ├── Nicosia │ │ │ ├── Rangoon │ │ │ ├── Riyadh │ │ │ ├── Saigon │ │ │ ├── Taipei │ │ │ ├── Tbilisi │ │ │ ├── Tehran │ │ │ ├── Thimbu │ │ │ ├── Thimphu │ │ │ ├── Urumqi │ │ │ ├── Yakutsk │ │ │ ├── Yangon │ │ │ └── Yerevan │ │ │ ├── Etc │ │ │ ├── GMT+1 │ │ │ ├── GMT+10 │ │ │ ├── GMT+11 │ │ │ ├── GMT+12 │ │ │ ├── GMT+2 │ │ │ ├── GMT+3 │ │ │ ├── GMT+4 │ │ │ ├── GMT+5 │ │ │ ├── GMT+6 │ │ │ ├── GMT+7 │ │ │ ├── GMT+8 │ │ │ ├── GMT+9 │ │ │ ├── GMT-10 │ │ │ ├── GMT-11 │ │ │ ├── GMT-12 │ │ │ ├── GMT-13 │ │ │ ├── GMT-14 │ │ │ ├── GMT-8 │ │ │ ├── GMT-9 │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT-0 │ │ │ ├── GMT0 │ │ │ ├── UCT │ │ │ ├── UTC │ │ │ └── Zulu │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT-0 │ │ │ ├── GMT0 │ │ │ ├── Hongkong │ │ │ ├── Kwajalein │ │ │ ├── Portugal │ │ │ ├── Singapore │ │ │ ├── UCT │ │ │ ├── US │ │ │ ├── Alaska │ │ │ ├── Arizona │ │ │ ├── Central │ │ │ ├── Eastern │ │ │ ├── Hawaii │ │ │ ├── Pacific │ │ │ ├── Samoa │ │ │ ├── Aleutian │ │ │ ├── Michigan │ │ │ └── Mountain │ │ │ ├── UTC │ │ │ ├── Zulu │ │ │ ├── posixrules │ │ │ ├── Africa │ │ │ ├── Accra │ │ │ ├── Cairo │ │ │ ├── Ceuta │ │ │ ├── Dakar │ │ │ ├── Juba │ │ │ ├── Lagos │ │ │ ├── Lome │ │ │ ├── Tunis │ │ │ ├── Abidjan │ │ │ ├── Algiers │ │ │ ├── Asmara │ │ │ ├── Asmera │ │ │ ├── Bamako │ │ │ ├── Bangui │ │ │ ├── Banjul │ │ │ ├── Bissau │ │ │ ├── Blantyre │ │ │ ├── Conakry │ │ │ ├── Djibouti │ │ │ ├── Douala │ │ │ ├── El_Aaiun │ │ │ ├── Freetown │ │ │ ├── Gaborone │ │ │ ├── Harare │ │ │ ├── Kampala │ │ │ ├── Khartoum │ │ │ ├── Kigali │ │ │ ├── Kinshasa │ │ │ ├── Luanda │ │ │ ├── Lusaka │ │ │ ├── Malabo │ │ │ ├── Maputo │ │ │ ├── Maseru │ │ │ ├── Mbabane │ │ │ ├── Monrovia │ │ │ ├── Nairobi │ │ │ ├── Ndjamena │ │ │ ├── Niamey │ │ │ ├── Sao_Tome │ │ │ ├── Timbuktu │ │ │ ├── Tripoli │ │ │ └── Windhoek │ │ │ ├── America │ │ │ ├── Adak │ │ │ ├── Atka │ │ │ ├── Lima │ │ │ ├── Nome │ │ │ ├── Antigua │ │ │ ├── Aruba │ │ │ ├── Bahia │ │ │ ├── Belem │ │ │ ├── Belize │ │ │ ├── Bogota │ │ │ ├── Boise │ │ │ └── Cancun │ │ │ ├── Brazil │ │ │ ├── Acre │ │ │ ├── East │ │ │ └── West │ │ │ ├── Canada │ │ │ └── Yukon │ │ │ ├── Europe │ │ │ ├── Kiev │ │ │ ├── Kirov │ │ │ ├── Malta │ │ │ ├── Minsk │ │ │ ├── Oslo │ │ │ ├── Paris │ │ │ ├── Riga │ │ │ ├── Rome │ │ │ ├── Sofia │ │ │ └── Vaduz │ │ │ ├── Factory │ │ │ ├── Greenwich │ │ │ ├── Indian │ │ │ ├── Cocos │ │ │ └── Mahe │ │ │ ├── Pacific │ │ │ ├── Apia │ │ │ ├── Fiji │ │ │ ├── Guam │ │ │ ├── Niue │ │ │ ├── Truk │ │ │ ├── Wake │ │ │ └── Yap │ │ │ └── Universal │ │ ├── xlwt │ │ ├── BIFFRecords.py │ │ └── UnicodeUtils.py │ │ └── _yaml.cp37-win32.pyd ├── Scripts │ ├── pip.exe │ ├── pip3.exe │ ├── pip3.7.exe │ ├── python.exe │ ├── pythonw.exe │ ├── sqlformat.exe │ ├── django-admin.exe │ ├── easy_install.exe │ ├── easy_install-3.7.exe │ └── __pycache__ │ │ └── runxlrd.cpython-37.pyc └── pyvenv.cfg ├── db.sqlite3 ├── readme.docx ├── requirements.txt ├── .~lock.readme.docx# └── __pycache__ └── manage.cpython-37.pyc /IMS/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /signup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myrequest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myreturn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrequest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adminprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adminrequest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /login/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/signup/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashboard/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myrequest/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myreturn/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /newrequest/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /signup/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticfiles/signup/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/adminrequest/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adminprofile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adminrequest/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /userprofile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/et_xmlfile/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/tablib/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/az/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/eo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/fy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/gd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/template/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz-2019.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/tablib/packages/dbfpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/tablib/packages/dbfpy3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/Django-2.2.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/Pillow-6.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/Pillow-6.1.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyYAML-5.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/app_template/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/en_AU/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/es_CO/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/es_PR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/core/cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/core/checks/security/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/sqlite3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/template/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/import_export/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/jdcal-1.4.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/lml-0.0.9.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz-2019.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/xlrd-1.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/xlwt-1.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/Pillow-6.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PIL 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/defusedxml-0.6.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/admin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/auth/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/core/checks/compatibility/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/jdcal-1.4.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jdcal 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/lml-0.0.9.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | lml 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel-0.5.14.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel/plugins/sources/pydata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel_io-0.5.18.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel_io/database/exporters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel_io/database/importers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz-2019.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/sqlparse-0.3.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/tablib-0.13.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/xlrd-1.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | xlrd 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/xlwt-1.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | xlwt 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/Django-2.2.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | django 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/backports.csv-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/contenttypes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/flatpages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/flatpages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/db/backends/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/db/backends/postgis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/redirects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/sessions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django_excel-0.0.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/odfpy-1.4.0-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | odf 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel-0.5.14.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyexcel 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel_webio-0.1.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/tablib-0.13.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | tablib 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/defusedxml-0.6.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | defusedxml 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/staticfiles/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django_import_export-1.2.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/import_export/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.2.0' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/odfpy-1.4.0-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/odfpy-1.4.0-py3.7.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | defusedxml 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl-2.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/sqlparse-0.3.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sqlparse 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/xlrd/info.py: -------------------------------------------------------------------------------- 1 | __version__ = __VERSION__ = "1.2.0" 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/backports.csv-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | backports 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/et_xmlfile-1.0.1-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/et_xmlfile-1.0.1-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | et_xmlfile 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl-2.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | openpyxl 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel_io-0.5.18.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyexcel_io 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/texttable-1.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/texttable-1.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | texttable 2 | -------------------------------------------------------------------------------- /login/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /myrequest/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /myreturn/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /signup/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /upload/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /upload/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/lml/_version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.9" 2 | __author__ = "C.W." 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel_webio-0.1.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pyexcel_webio 2 | -------------------------------------------------------------------------------- /adminprofile/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /adminrequest/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /dashboard/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /myrequest/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /myrequest/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /myreturn/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /myreturn/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /newrequest/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /upload/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /userprofile/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /userprofile/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PIL/__main__.py: -------------------------------------------------------------------------------- 1 | from .features import pilinfo 2 | 3 | pilinfo() 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/backports.csv-1.0.7.dist-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | backports 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/diff_match_patch-20181111-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django_import_export-1.2.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | import_export 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/import_export/models.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl-2.6.2-py3.7.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | jdcal 2 | et_xmlfile 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/reader/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2010-2019 openpyxl 2 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/readme.docx -------------------------------------------------------------------------------- /userprofile/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PIL/_version.py: -------------------------------------------------------------------------------- 1 | # Master version for Pillow 2 | __version__ = "6.1.0" 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/diff_match_patch-20181111-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | diff_match_patch 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.14" 2 | __author__ = "C.W." 3 | -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/core/mail/backends/__init__.py: -------------------------------------------------------------------------------- 1 | # Mail backends shipped with Django. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | ./pip-19.0.3-py3.7.egg 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/import_export/formats/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import unicode_literals 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/requirements.txt -------------------------------------------------------------------------------- /staticfiles/vendor/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- 1 | .clearfix { 2 | @include clearfix(); 3 | } 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django_excel-0.0.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | django_excel 2 | mysite 3 | polls 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /.~lock.readme.docx#: -------------------------------------------------------------------------------- 1 | ,asif.shapurkar,L-4102,02.08.2022 13:00,file:///home/asifshahapurkar/.config/libreoffice/4; -------------------------------------------------------------------------------- /static/signup/scss/common/variables.scss: -------------------------------------------------------------------------------- 1 | $black-color : #222; 2 | $blue-color : #6dabe4; 3 | $grey-light: #999; -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql_psycopg2/base.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.base import * # NOQA 2 | -------------------------------------------------------------------------------- /login/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class LoginConfig(AppConfig): 5 | name = 'login' 6 | -------------------------------------------------------------------------------- /staticfiles/signup/scss/common/variables.scss: -------------------------------------------------------------------------------- 1 | $black-color : #222; 2 | $blue-color : #6dabe4; 3 | $grey-light: #999; -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.gis.apps.GISConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql_psycopg2/client.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.client import * # NOQA 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql_psycopg2/schema.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.schema import * # NOQA 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql_psycopg2/utils.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.utils import * # NOQA 2 | -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /signup/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class SignupConfig(AppConfig): 5 | name = 'signup' 6 | -------------------------------------------------------------------------------- /upload/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UploadConfig(AppConfig): 5 | name = 'upload' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/sites/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.sites.apps.SitesConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql_psycopg2/creation.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.creation import * # NOQA 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql_psycopg2/features.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.features import * # NOQA 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/views/__init__.py: -------------------------------------------------------------------------------- 1 | from django.views.generic.base import View 2 | 3 | __all__ = ['View'] 4 | -------------------------------------------------------------------------------- /venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /myreturn/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyreturnConfig(AppConfig): 5 | name = 'myreturn' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/core/files/__init__.py: -------------------------------------------------------------------------------- 1 | from django.core.files.base import File 2 | 3 | __all__ = ['File'] 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql_psycopg2/operations.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.operations import * # NOQA 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/date.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/file.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/text.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/time.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/url.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pyexcel/docstrings/garbagecollector.py: -------------------------------------------------------------------------------- 1 | from .keywords import I_NOTE 2 | 3 | FREE_RESOURCES = I_NOTE 4 | -------------------------------------------------------------------------------- /venv/Scripts/sqlformat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/sqlformat.exe -------------------------------------------------------------------------------- /dashboard/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class DashboardConfig(AppConfig): 5 | name = 'dashboard' 6 | -------------------------------------------------------------------------------- /myrequest/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MyrequestConfig(AppConfig): 5 | name = 'myrequest' 6 | -------------------------------------------------------------------------------- /newrequest/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class NewrequestConfig(AppConfig): 5 | name = 'newrequest' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/app_template/models.py-tpl: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/app_template/tests.py-tpl: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/admindocs/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.admindocs.apps.AdminDocsConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/flatpages/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.flatpages.apps.FlatPagesConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/humanize/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.humanize.apps.HumanizeConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/postgres/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.postgres.apps.PostgresConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/redirects/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.redirects.apps.RedirectsConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.sessions.apps.SessionsConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/postgresql_psycopg2/introspection.py: -------------------------------------------------------------------------------- 1 | from ..postgresql.introspection import * # NOQA 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/datetime.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/email.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/number.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/password.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/pivot/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | # Copyright (c) 2010-2019 openpyxl 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/writer/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | # Copyright (c) 2010-2019 openpyxl 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/sqlparse-0.3.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | sqlformat = sqlparse.__main__:main 3 | 4 | -------------------------------------------------------------------------------- /venv/Scripts/django-admin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/django-admin.exe -------------------------------------------------------------------------------- /venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /myrequest/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('',views.home), 6 | ] -------------------------------------------------------------------------------- /myreturn/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('',views.home), 6 | ] -------------------------------------------------------------------------------- /signup/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.signup), 6 | ] -------------------------------------------------------------------------------- /upload/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('', views.home), 6 | ] -------------------------------------------------------------------------------- /userprofile/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UserprofileConfig(AppConfig): 5 | name = 'userprofile' 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/app_template/admin.py-tpl: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/conf/app_template/views.py-tpl: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/staticfiles/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.staticfiles.apps.StaticFilesConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/syndication/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.syndication.apps.SyndicationConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_date.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/worksheet/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | # Copyright (c) 2010-2019 openpyxl 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /__pycache__/manage.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/__pycache__/manage.cpython-37.pyc -------------------------------------------------------------------------------- /adminprofile/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AdminprofileConfig(AppConfig): 5 | name = 'adminprofile' 6 | -------------------------------------------------------------------------------- /adminrequest/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AdminrequestConfig(AppConfig): 5 | name = 'adminrequest' 6 | -------------------------------------------------------------------------------- /newrequest/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, include 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('',views.home), 6 | ] -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/radio.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | default_app_config = 'django.contrib.contenttypes.apps.ContentTypesConfig' 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/postgres/aggregates/__init__.py: -------------------------------------------------------------------------------- 1 | from .general import * # NOQA 2 | from .statistics import * # NOQA 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiwidget.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splitdatetime.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/radio_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/select_date.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/splitdatetime.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /IMS/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /IMS/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /IMS/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /IMS/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /IMS/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /login/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /login/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /login/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import Login 5 | admin.site.register(Login) -------------------------------------------------------------------------------- /static/signup/images/signin-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/images/signin-image.jpg -------------------------------------------------------------------------------- /static/signup/images/signup-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/images/signup-image.jpg -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/postgres/jinja2/postgres/widgets/split_array.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/postgres/templates/postgres/widgets/split_array.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splithiddendatetime.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_option.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/input_option.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_select.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiple_input.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_hidden.html: -------------------------------------------------------------------------------- 1 | {% include "django/forms/widgets/multiwidget.html" %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /IMS/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /IMS/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /IMS/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /IMS/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /login/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /login/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /login/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /login/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /login/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /login/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /login/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /login/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /login/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /login/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /login/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /login/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /login/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /signup/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /signup/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /signup/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /signup/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /signup/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /signup/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /signup/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /signup/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /signup/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /signup/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /static/js/demo/datatables-demo.js: -------------------------------------------------------------------------------- 1 | // Call the dataTables jQuery plugin 2 | $(document).ready(function() { 3 | $('#dataTable').DataTable(); 4 | }); 5 | -------------------------------------------------------------------------------- /upload/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /upload/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /upload/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /upload/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /upload/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /upload/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /upload/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /upload/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /upload/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /upload/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/apps/__init__.py: -------------------------------------------------------------------------------- 1 | from .config import AppConfig 2 | from .registry import apps 3 | 4 | __all__ = ['AppConfig', 'apps'] 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html: -------------------------------------------------------------------------------- 1 | {% include 'admin/widgets/foreign_key_raw_id.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/templates/django/forms/widgets/splithiddendatetime.html: -------------------------------------------------------------------------------- 1 | {% include 'django/forms/widgets/multiwidget.html' %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/GB -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/NZ -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\1000263039\AppData\Local\Programs\Python\Python37-32 2 | include-system-site-packages = false 3 | version = 3.7.3 4 | -------------------------------------------------------------------------------- /IMS/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /IMS/__pycache__/settings.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/IMS/__pycache__/settings.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /login/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /login/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /login/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /login/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /signup/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /signup/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /signup/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /signup/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /signup/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /signup/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /signup/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /signup/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /signup/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | 5 | from .models import Employee 6 | admin.site.register(Employee) -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticfiles/js/demo/datatables-demo.js: -------------------------------------------------------------------------------- 1 | // Call the dataTables jQuery plugin 2 | $(document).ready(function() { 3 | $('#dataTable').DataTable(); 4 | }); 5 | -------------------------------------------------------------------------------- /staticfiles/signup/images/signin-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/staticfiles/signup/images/signin-image.jpg -------------------------------------------------------------------------------- /staticfiles/signup/images/signup-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/staticfiles/signup/images/signup-image.jpg -------------------------------------------------------------------------------- /upload/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /upload/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /upload/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /upload/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /upload/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /upload/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /upload/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /upload/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/Django-2.2.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | django-admin = django.core.management:execute_from_command_line 3 | 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Stuff related to Office OpenXML packaging: relationships, archive, content types. 3 | """ 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/CET -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Cuba -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/EET -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/EST -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Egypt -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Eire -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/HST -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Iran -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Japan -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Libya -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/MET -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/MST -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/PRC -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/ROC -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/ROK -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/W-SU -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/WET -------------------------------------------------------------------------------- /venv/Lib/site-packages/xlwt/BIFFRecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/xlwt/BIFFRecords.py -------------------------------------------------------------------------------- /adminprofile/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /adminrequest/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import approval 5 | admin.site.register(approval) -------------------------------------------------------------------------------- /dashboard/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /signup/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/signup/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /static/login/home.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin: 0 auto; /* Added */ 3 | float: none; /* Added */ 4 | margin-bottom: 10px; /* Added */ 5 | } 6 | -------------------------------------------------------------------------------- /staticfiles/vendor/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- 1 | .media { 2 | display: flex; 3 | align-items: flex-start; 4 | } 5 | 6 | .media-body { 7 | flex: 1; 8 | } 9 | -------------------------------------------------------------------------------- /staticfiles/vendor/fontawesome-free/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/upload/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/Django-2.2.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/_yaml.cp37-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/_yaml.cp37-win32.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/backends/signals.py: -------------------------------------------------------------------------------- 1 | from django.dispatch import Signal 2 | 3 | connection_created = Signal(providing_args=["connection"]) 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/db/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | from .migration import Migration, swappable_dependency # NOQA 2 | from .operations import * # NOQA 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Iceland -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Israel -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Jamaica -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Navajo -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Poland -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Turkey -------------------------------------------------------------------------------- /venv/Lib/site-packages/xlwt/UnicodeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/xlwt/UnicodeUtils.py -------------------------------------------------------------------------------- /adminprofile/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/apps.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/apps.cpython-310.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/forms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/forms.cpython-310.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/urls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/urls.cpython-310.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /dashboard/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/dashboard/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /myrequest/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myrequest/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /myreturn/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/myreturn/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /newrequest/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/newrequest/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /newrequest/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import NewRequest 5 | admin.site.register(NewRequest) 6 | -------------------------------------------------------------------------------- /staticfiles/login/home.css: -------------------------------------------------------------------------------- 1 | .card { 2 | margin: 0 auto; /* Added */ 3 | float: none; /* Added */ 4 | margin-bottom: 10px; /* Added */ 5 | } 6 | -------------------------------------------------------------------------------- /userprofile/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/admin.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/admin.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/models.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/models.cpython-310.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /userprofile/__pycache__/views.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/views.cpython-310.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/PIL/_webp.cp37-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/PIL/_webp.cp37-win32.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/Pillow-6.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.4) 3 | Root-Is-Purelib: false 4 | Tag: cp37-cp37m-win32 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PyYAML-5.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.4) 3 | Root-Is-Purelib: false 4 | Tag: cp37-cp37m-win32 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/formatting/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | # Copyright (c) 2010-2019 openpyxl 3 | 4 | from .rule import Rule 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/GMT: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/GMT0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Hongkong -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Portugal -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Singapore -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/UCT: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Central -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Eastern -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Pacific -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/UTC: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Zulu: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/posixrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/posixrules -------------------------------------------------------------------------------- /venv/Lib/site-packages/tablib-0.13.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.3) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Scripts/__pycache__/runxlrd.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Scripts/__pycache__/runxlrd.cpython-37.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /adminprofile/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminprofile/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /adminrequest/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/adminrequest/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/staticfiles/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/staticfiles/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /userprofile/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/userprofile/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/gis/geos/error.py: -------------------------------------------------------------------------------- 1 | class GEOSException(Exception): 2 | "The base GEOS exception, indicates a GEOS-related error." 3 | pass 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/contrib/postgres/fields/utils.py: -------------------------------------------------------------------------------- 1 | class AttributeSetter: 2 | def __init__(self, name, value): 3 | setattr(self, name, value) 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiwidget.html: -------------------------------------------------------------------------------- 1 | {% for widget in widget.subwidgets -%}{% include widget.template_name %}{%- endfor %} 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Adak -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Atka -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Lima -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Nome -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Barnaul -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yangon -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Kirov -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Europe/Vaduz -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Factory: -------------------------------------------------------------------------------- 1 | TZif2-00TZif2-00 2 | <-00>0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Greenwich: -------------------------------------------------------------------------------- 1 | TZif2GMTTZif2GMT 2 | GMT0 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Indian/Cocos -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Indian/Mahe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Apia -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Fiji -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Guam -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Niue -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Truk -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Wake -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Pacific/Yap -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Aleutian -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Michigan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Michigan -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/US/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/US/Mountain -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Universal: -------------------------------------------------------------------------------- 1 | TZif2UTCTZif2UTC 2 | UTC0 3 | -------------------------------------------------------------------------------- /login/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /login/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/login/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-300.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-300.eot -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-300.ttf -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-500.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-500.eot -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-500.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-500.ttf -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-600.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-600.eot -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-600.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-600.ttf -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-700.eot -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-700.ttf -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-800.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-800.eot -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-800.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-800.ttf -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-900.eot -------------------------------------------------------------------------------- /static/signup/fonts/poppins/poppins-v5-latin-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/static/signup/fonts/poppins/poppins-v5-latin-900.ttf -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/staticfiles/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /staticfiles/vendor/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- 1 | @mixin clearfix() { 2 | &::after { 3 | display: block; 4 | clear: both; 5 | content: ""; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/PIL/_imaging.cp37-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/PIL/_imaging.cp37-win32.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PIL/_imagingft.cp37-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/PIL/_imagingft.cp37-win32.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/PIL/_imagingtk.cp37-win32.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/PIL/_imagingtk.cp37-win32.pyd -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/comments/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | # Copyright (c) 2010-2019 openpyxl 3 | 4 | 5 | from .comments import Comment 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/drawing/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | # Copyright (c) 2010-2019 openpyxl 3 | 4 | 5 | from .drawing import Drawing 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/openpyxl/formula/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | # Copyright (c) 2010-2019 openpyxl 3 | 4 | from .tokenizer import Tokenizer 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Abidjan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Abidjan -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Algiers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Algiers -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Asmara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Asmara -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Asmera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Asmera -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Bamako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Bamako -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Bangui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Bangui -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Banjul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Banjul -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Bissau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Bissau -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Blantyre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Blantyre -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Conakry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Conakry -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Djibouti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Djibouti -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Douala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Douala -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/El_Aaiun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/El_Aaiun -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Freetown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Freetown -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Gaborone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Gaborone -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Harare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Harare -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Kampala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Kampala -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Khartoum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Khartoum -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Kigali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Kigali -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Kinshasa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Kinshasa -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Luanda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Luanda -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Lusaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Lusaka -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Malabo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Malabo -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Maputo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Maputo -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Maseru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Maseru -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Mbabane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Mbabane -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Monrovia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Monrovia -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Nairobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Nairobi -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Ndjamena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Ndjamena -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Niamey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Niamey -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Sao_Tome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Sao_Tome -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Timbuktu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Timbuktu -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Tripoli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Tripoli -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/Africa/Windhoek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/Africa/Windhoek -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Antigua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Antigua -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Aruba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Aruba -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Bahia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Bahia -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Belem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Belem -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Belize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Belize -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Bogota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Bogota -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Boise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Boise -------------------------------------------------------------------------------- /venv/Lib/site-packages/pytz/zoneinfo/America/Cancun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laidbackvalen/Inventory-Python-Project/HEAD/venv/Lib/site-packages/pytz/zoneinfo/America/Cancun --------------------------------------------------------------------------------