├── .coveragerc ├── .gitignore ├── .travis.yml ├── INSTALL.rst ├── LICENSE.txt ├── Makefile ├── README.rst ├── data ├── __init__.py ├── migrate │ ├── __init__.py │ ├── migrate_categories.py │ ├── migrate_items.py │ ├── migrate_location.py │ ├── migrate_suppliers.py │ └── populate_database.sh └── regions │ ├── IP2LOCATION-ISO3166-2.CSV │ ├── IP2LOCATION-ISO3166-2.ZIP │ ├── README.rst │ ├── country_names_and_code_elements.csv │ ├── currency-codes-all.csv │ ├── ietf-language-tags.csv │ ├── populate-regions.conf │ ├── tzdata2016f.tar.gz │ └── zone1970.tab ├── db-snapshots └── create_starter_db.sh ├── db ├── README.rst └── create_schema.ddl ├── docs ├── AccountCreation.dia ├── CreateTreeFlow.dia ├── InventoryCategories.odt ├── Makefile └── Schema-V2.dia ├── dump-db.sh ├── inventory ├── __init__.py ├── accounts │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_accounts_api.py │ │ ├── urls.py │ │ └── views.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170610_1325.py │ │ ├── 0003_auto_20180505_1902.py │ │ ├── 0004_auto_20200802_1525.py │ │ ├── 0005_user__role.py │ │ ├── 0006_auto_20210516_1312.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ └── test_account_models.py │ ├── urls.py │ └── views.py ├── categories │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_categories_api.py │ │ ├── urls.py │ │ └── views.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_category_id.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ └── test_category_models.py │ └── views.py ├── common │ ├── __init__.py │ ├── admin.py │ ├── admin_mixins.py │ ├── api │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── negotiation.py │ │ ├── pagination.py │ │ ├── parsers.py │ │ ├── permissions.py │ │ ├── renderers.py │ │ ├── serializer_mixin.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── base_test.py │ │ │ └── test_permissions.py │ │ ├── versioning.py │ │ └── view_mixins.py │ ├── key_generator.py │ ├── loghandlers.py │ ├── model_mixins.py │ ├── storage.py │ ├── tests │ │ ├── __init__.py │ │ ├── base_tests.py │ │ ├── record_creation.py │ │ ├── test_key_generator.py │ │ └── test_storage.py │ └── utils.py ├── dev │ ├── css │ │ ├── common.css │ │ ├── modal.css │ │ ├── site_footer.css │ │ └── site_header.css │ ├── img │ │ ├── arrow130x18.png │ │ ├── arrow18x16.png │ │ ├── favicon.ico │ │ ├── molumen_red_square_error_warning_icon.svg │ │ ├── rodentia-icons_dialog-warning.svg │ │ ├── rodentia-icons_emblem-default.svg │ │ ├── rodentia-icons_emblem-information.svg │ │ ├── tetrasys-logo-blue-100x100.png │ │ ├── tetrasys-logo-blue.png │ │ ├── tetrasys-logo-grey-100x100.png │ │ └── tetrasys-logo-grey.png │ ├── js │ │ ├── app │ │ │ ├── accounts │ │ │ │ ├── account_app.js │ │ │ │ ├── account_models.js │ │ │ │ └── account_views.js │ │ │ ├── app.js │ │ │ ├── auth │ │ │ │ ├── auth_app.js │ │ │ │ ├── login_model.js │ │ │ │ ├── login_view.js │ │ │ │ ├── logout_model.js │ │ │ │ └── logout_view.js │ │ │ ├── common │ │ │ │ ├── base_meta_model.js │ │ │ │ ├── common_objects.js │ │ │ │ ├── menu_views.js │ │ │ │ ├── modal_models.js │ │ │ │ ├── modal_views.js │ │ │ │ └── root_model.js │ │ │ ├── invoices │ │ │ │ ├── invoice_models.js │ │ │ │ └── invoice_views.js │ │ │ ├── projects │ │ │ │ ├── project_app.js │ │ │ │ ├── project_editor.js │ │ │ │ ├── project_layouts.js │ │ │ │ ├── project_list.js │ │ │ │ ├── project_models.js │ │ │ │ ├── project_router.js │ │ │ │ ├── project_viewer.js │ │ │ │ └── project_views.js │ │ │ └── utils.js │ │ ├── contrib │ │ │ ├── menu │ │ │ │ ├── menu_model.js │ │ │ │ └── menu_views.js │ │ │ └── modal │ │ │ │ └── base_modal_view.js │ │ ├── expandingMenu.js │ │ ├── inheritance.js │ │ ├── link.js │ │ ├── purge.js │ │ └── regions.js │ └── vendor │ │ ├── README.rst │ │ ├── backbone-1.4.0.js │ │ ├── backbone-1.4.0.min.js │ │ ├── backbone-1.4.0.min.map │ │ ├── backbone.mutators.min.js │ │ ├── bootstrap-3.3.7-dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-3.4.1.js │ │ ├── jquery-3.4.1.min.js │ │ ├── jquery-3.4.1.min.map │ │ ├── js.cookie-2.0.4.js │ │ ├── js.cookie-2.0.4.min.js │ │ ├── lodash-4.17.15.js │ │ ├── lodash-4.17.15.min.js │ │ ├── micromodal.js │ │ └── micromodal.min.js ├── invoices │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_invoices_api.py │ │ ├── urls.py │ │ └── views.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180505_1903.py │ │ ├── 0003_auto_20200801_1652.py │ │ ├── 0004_auto_20210516_1312.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ └── test_invoice_models.py │ └── views.py ├── locations │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_locations_api.py │ │ ├── urls.py │ │ └── views.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170610_1325.py │ │ ├── 0003_auto_20210516_1312.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_location_models.py │ │ └── test_validation.py │ ├── urls.py │ └── validation.py ├── projects │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_projects_api.py │ │ ├── urls.py │ │ └── views.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170610_1325.py │ │ ├── 0003_auto_20200802_1205.py │ │ ├── 0004_auto_20200806_1501.py │ │ ├── 0005_auto_20210516_1312.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ └── test_projects_models.py │ ├── urls.py │ └── views.py ├── regions │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_regions_api.py │ │ ├── urls.py │ │ └── views.py │ ├── apps.py │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── parsers │ │ │ ├── __init__.py │ │ │ ├── country.py │ │ │ ├── currency.py │ │ │ ├── language.py │ │ │ ├── subdivision.py │ │ │ └── timezone.py │ │ │ └── populate_regions.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20210516_1312.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ └── test_region_models.py │ ├── urls.py │ └── views.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── development.py │ ├── production.py │ ├── staging.py │ └── travis.py ├── sites │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── urls.py │ │ └── views.py │ ├── urls.py │ └── views.py ├── suppliers │ ├── __init__.py │ ├── admin.py │ ├── api │ │ ├── __init__.py │ │ ├── serializers.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_suppliers_api.py │ │ ├── urls.py │ │ └── views.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_supplier_id.py │ │ └── __init__.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ └── test_supplier_models.py │ ├── urls.py │ └── views.py ├── templates │ ├── base.html │ ├── includes │ │ ├── _footer_site.html │ │ └── _header_site.html │ ├── modals │ │ ├── _alert.html │ │ ├── _login.html │ │ ├── _logout.html │ │ ├── _notify.html │ │ └── _tmp_notify.html │ └── sites │ │ ├── _accounts.html │ │ ├── _invoices.html │ │ ├── _projects.html │ │ └── site_home.html ├── urls.py └── wsgi.py ├── manage.py ├── requirements ├── base.txt ├── development.txt ├── production.txt ├── staging.txt └── travis.txt ├── run_test.sh ├── server ├── README.rst ├── app.wsgi ├── inventory-prod.conf ├── inventory-stage.conf ├── inventory.conf └── redis.conf.dev └── setup_settings /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/.travis.yml -------------------------------------------------------------------------------- /INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/INSTALL.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/README.rst -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/migrate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/migrate/__init__.py -------------------------------------------------------------------------------- /data/migrate/migrate_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/migrate/migrate_categories.py -------------------------------------------------------------------------------- /data/migrate/migrate_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/migrate/migrate_items.py -------------------------------------------------------------------------------- /data/migrate/migrate_location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/migrate/migrate_location.py -------------------------------------------------------------------------------- /data/migrate/migrate_suppliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/migrate/migrate_suppliers.py -------------------------------------------------------------------------------- /data/migrate/populate_database.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/migrate/populate_database.sh -------------------------------------------------------------------------------- /data/regions/IP2LOCATION-ISO3166-2.CSV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/IP2LOCATION-ISO3166-2.CSV -------------------------------------------------------------------------------- /data/regions/IP2LOCATION-ISO3166-2.ZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/IP2LOCATION-ISO3166-2.ZIP -------------------------------------------------------------------------------- /data/regions/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/README.rst -------------------------------------------------------------------------------- /data/regions/country_names_and_code_elements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/country_names_and_code_elements.csv -------------------------------------------------------------------------------- /data/regions/currency-codes-all.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/currency-codes-all.csv -------------------------------------------------------------------------------- /data/regions/ietf-language-tags.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/ietf-language-tags.csv -------------------------------------------------------------------------------- /data/regions/populate-regions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/populate-regions.conf -------------------------------------------------------------------------------- /data/regions/tzdata2016f.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/tzdata2016f.tar.gz -------------------------------------------------------------------------------- /data/regions/zone1970.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/data/regions/zone1970.tab -------------------------------------------------------------------------------- /db-snapshots/create_starter_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/db-snapshots/create_starter_db.sh -------------------------------------------------------------------------------- /db/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/db/README.rst -------------------------------------------------------------------------------- /db/create_schema.ddl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/db/create_schema.ddl -------------------------------------------------------------------------------- /docs/AccountCreation.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/docs/AccountCreation.dia -------------------------------------------------------------------------------- /docs/CreateTreeFlow.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/docs/CreateTreeFlow.dia -------------------------------------------------------------------------------- /docs/InventoryCategories.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/docs/InventoryCategories.odt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/Schema-V2.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/docs/Schema-V2.dia -------------------------------------------------------------------------------- /dump-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/dump-db.sh -------------------------------------------------------------------------------- /inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/admin.py -------------------------------------------------------------------------------- /inventory/accounts/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/accounts/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/api/serializers.py -------------------------------------------------------------------------------- /inventory/accounts/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/accounts/api/tests/test_accounts_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/api/tests/test_accounts_api.py -------------------------------------------------------------------------------- /inventory/accounts/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/api/urls.py -------------------------------------------------------------------------------- /inventory/accounts/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/api/views.py -------------------------------------------------------------------------------- /inventory/accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/forms.py -------------------------------------------------------------------------------- /inventory/accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/accounts/migrations/0002_auto_20170610_1325.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/migrations/0002_auto_20170610_1325.py -------------------------------------------------------------------------------- /inventory/accounts/migrations/0003_auto_20180505_1902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/migrations/0003_auto_20180505_1902.py -------------------------------------------------------------------------------- /inventory/accounts/migrations/0004_auto_20200802_1525.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/migrations/0004_auto_20200802_1525.py -------------------------------------------------------------------------------- /inventory/accounts/migrations/0005_user__role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/migrations/0005_user__role.py -------------------------------------------------------------------------------- /inventory/accounts/migrations/0006_auto_20210516_1312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/migrations/0006_auto_20210516_1312.py -------------------------------------------------------------------------------- /inventory/accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/models.py -------------------------------------------------------------------------------- /inventory/accounts/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/accounts/tests/test_account_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/tests/test_account_models.py -------------------------------------------------------------------------------- /inventory/accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/accounts/urls.py -------------------------------------------------------------------------------- /inventory/accounts/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/categories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/categories/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/admin.py -------------------------------------------------------------------------------- /inventory/categories/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/categories/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/api/serializers.py -------------------------------------------------------------------------------- /inventory/categories/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/categories/api/tests/test_categories_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/api/tests/test_categories_api.py -------------------------------------------------------------------------------- /inventory/categories/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/api/urls.py -------------------------------------------------------------------------------- /inventory/categories/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/api/views.py -------------------------------------------------------------------------------- /inventory/categories/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/forms.py -------------------------------------------------------------------------------- /inventory/categories/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/categories/migrations/0002_alter_category_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/migrations/0002_alter_category_id.py -------------------------------------------------------------------------------- /inventory/categories/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/categories/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/models.py -------------------------------------------------------------------------------- /inventory/categories/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/categories/tests/test_category_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/categories/tests/test_category_models.py -------------------------------------------------------------------------------- /inventory/categories/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/__init__.py -------------------------------------------------------------------------------- /inventory/common/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/admin.py -------------------------------------------------------------------------------- /inventory/common/admin_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/admin_mixins.py -------------------------------------------------------------------------------- /inventory/common/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/common/api/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/fields.py -------------------------------------------------------------------------------- /inventory/common/api/negotiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/negotiation.py -------------------------------------------------------------------------------- /inventory/common/api/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/pagination.py -------------------------------------------------------------------------------- /inventory/common/api/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/parsers.py -------------------------------------------------------------------------------- /inventory/common/api/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/permissions.py -------------------------------------------------------------------------------- /inventory/common/api/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/renderers.py -------------------------------------------------------------------------------- /inventory/common/api/serializer_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/serializer_mixin.py -------------------------------------------------------------------------------- /inventory/common/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/common/api/tests/base_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/tests/base_test.py -------------------------------------------------------------------------------- /inventory/common/api/tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/tests/test_permissions.py -------------------------------------------------------------------------------- /inventory/common/api/versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/versioning.py -------------------------------------------------------------------------------- /inventory/common/api/view_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/api/view_mixins.py -------------------------------------------------------------------------------- /inventory/common/key_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/key_generator.py -------------------------------------------------------------------------------- /inventory/common/loghandlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/loghandlers.py -------------------------------------------------------------------------------- /inventory/common/model_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/model_mixins.py -------------------------------------------------------------------------------- /inventory/common/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/storage.py -------------------------------------------------------------------------------- /inventory/common/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/common/tests/base_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/tests/base_tests.py -------------------------------------------------------------------------------- /inventory/common/tests/record_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/tests/record_creation.py -------------------------------------------------------------------------------- /inventory/common/tests/test_key_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/tests/test_key_generator.py -------------------------------------------------------------------------------- /inventory/common/tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/tests/test_storage.py -------------------------------------------------------------------------------- /inventory/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/common/utils.py -------------------------------------------------------------------------------- /inventory/dev/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/css/common.css -------------------------------------------------------------------------------- /inventory/dev/css/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/css/modal.css -------------------------------------------------------------------------------- /inventory/dev/css/site_footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/css/site_footer.css -------------------------------------------------------------------------------- /inventory/dev/css/site_header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/css/site_header.css -------------------------------------------------------------------------------- /inventory/dev/img/arrow130x18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/arrow130x18.png -------------------------------------------------------------------------------- /inventory/dev/img/arrow18x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/arrow18x16.png -------------------------------------------------------------------------------- /inventory/dev/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/favicon.ico -------------------------------------------------------------------------------- /inventory/dev/img/molumen_red_square_error_warning_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/molumen_red_square_error_warning_icon.svg -------------------------------------------------------------------------------- /inventory/dev/img/rodentia-icons_dialog-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/rodentia-icons_dialog-warning.svg -------------------------------------------------------------------------------- /inventory/dev/img/rodentia-icons_emblem-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/rodentia-icons_emblem-default.svg -------------------------------------------------------------------------------- /inventory/dev/img/rodentia-icons_emblem-information.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/rodentia-icons_emblem-information.svg -------------------------------------------------------------------------------- /inventory/dev/img/tetrasys-logo-blue-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/tetrasys-logo-blue-100x100.png -------------------------------------------------------------------------------- /inventory/dev/img/tetrasys-logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/tetrasys-logo-blue.png -------------------------------------------------------------------------------- /inventory/dev/img/tetrasys-logo-grey-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/tetrasys-logo-grey-100x100.png -------------------------------------------------------------------------------- /inventory/dev/img/tetrasys-logo-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/img/tetrasys-logo-grey.png -------------------------------------------------------------------------------- /inventory/dev/js/app/accounts/account_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/accounts/account_app.js -------------------------------------------------------------------------------- /inventory/dev/js/app/accounts/account_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/accounts/account_models.js -------------------------------------------------------------------------------- /inventory/dev/js/app/accounts/account_views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/accounts/account_views.js -------------------------------------------------------------------------------- /inventory/dev/js/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/app.js -------------------------------------------------------------------------------- /inventory/dev/js/app/auth/auth_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/auth/auth_app.js -------------------------------------------------------------------------------- /inventory/dev/js/app/auth/login_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/auth/login_model.js -------------------------------------------------------------------------------- /inventory/dev/js/app/auth/login_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/auth/login_view.js -------------------------------------------------------------------------------- /inventory/dev/js/app/auth/logout_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/auth/logout_model.js -------------------------------------------------------------------------------- /inventory/dev/js/app/auth/logout_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/auth/logout_view.js -------------------------------------------------------------------------------- /inventory/dev/js/app/common/base_meta_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/common/base_meta_model.js -------------------------------------------------------------------------------- /inventory/dev/js/app/common/common_objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/common/common_objects.js -------------------------------------------------------------------------------- /inventory/dev/js/app/common/menu_views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/common/menu_views.js -------------------------------------------------------------------------------- /inventory/dev/js/app/common/modal_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/common/modal_models.js -------------------------------------------------------------------------------- /inventory/dev/js/app/common/modal_views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/common/modal_views.js -------------------------------------------------------------------------------- /inventory/dev/js/app/common/root_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/common/root_model.js -------------------------------------------------------------------------------- /inventory/dev/js/app/invoices/invoice_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/invoices/invoice_models.js -------------------------------------------------------------------------------- /inventory/dev/js/app/invoices/invoice_views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/invoices/invoice_views.js -------------------------------------------------------------------------------- /inventory/dev/js/app/projects/project_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/projects/project_app.js -------------------------------------------------------------------------------- /inventory/dev/js/app/projects/project_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/projects/project_editor.js -------------------------------------------------------------------------------- /inventory/dev/js/app/projects/project_layouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/projects/project_layouts.js -------------------------------------------------------------------------------- /inventory/dev/js/app/projects/project_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/projects/project_list.js -------------------------------------------------------------------------------- /inventory/dev/js/app/projects/project_models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/projects/project_models.js -------------------------------------------------------------------------------- /inventory/dev/js/app/projects/project_router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/projects/project_router.js -------------------------------------------------------------------------------- /inventory/dev/js/app/projects/project_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/projects/project_viewer.js -------------------------------------------------------------------------------- /inventory/dev/js/app/projects/project_views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/projects/project_views.js -------------------------------------------------------------------------------- /inventory/dev/js/app/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/app/utils.js -------------------------------------------------------------------------------- /inventory/dev/js/contrib/menu/menu_model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/contrib/menu/menu_model.js -------------------------------------------------------------------------------- /inventory/dev/js/contrib/menu/menu_views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/contrib/menu/menu_views.js -------------------------------------------------------------------------------- /inventory/dev/js/contrib/modal/base_modal_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/contrib/modal/base_modal_view.js -------------------------------------------------------------------------------- /inventory/dev/js/expandingMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/expandingMenu.js -------------------------------------------------------------------------------- /inventory/dev/js/inheritance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/inheritance.js -------------------------------------------------------------------------------- /inventory/dev/js/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/link.js -------------------------------------------------------------------------------- /inventory/dev/js/purge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/purge.js -------------------------------------------------------------------------------- /inventory/dev/js/regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/js/regions.js -------------------------------------------------------------------------------- /inventory/dev/vendor/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/README.rst -------------------------------------------------------------------------------- /inventory/dev/vendor/backbone-1.4.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/backbone-1.4.0.js -------------------------------------------------------------------------------- /inventory/dev/vendor/backbone-1.4.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/backbone-1.4.0.min.js -------------------------------------------------------------------------------- /inventory/dev/vendor/backbone-1.4.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/backbone-1.4.0.min.map -------------------------------------------------------------------------------- /inventory/dev/vendor/backbone.mutators.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/backbone.mutators.min.js -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap.css -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/js/bootstrap.js -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /inventory/dev/vendor/bootstrap-3.3.7-dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/bootstrap-3.3.7-dist/js/npm.js -------------------------------------------------------------------------------- /inventory/dev/vendor/jquery-3.4.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/jquery-3.4.1.js -------------------------------------------------------------------------------- /inventory/dev/vendor/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /inventory/dev/vendor/jquery-3.4.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/jquery-3.4.1.min.map -------------------------------------------------------------------------------- /inventory/dev/vendor/js.cookie-2.0.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/js.cookie-2.0.4.js -------------------------------------------------------------------------------- /inventory/dev/vendor/js.cookie-2.0.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/js.cookie-2.0.4.min.js -------------------------------------------------------------------------------- /inventory/dev/vendor/lodash-4.17.15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/lodash-4.17.15.js -------------------------------------------------------------------------------- /inventory/dev/vendor/lodash-4.17.15.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/lodash-4.17.15.min.js -------------------------------------------------------------------------------- /inventory/dev/vendor/micromodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/micromodal.js -------------------------------------------------------------------------------- /inventory/dev/vendor/micromodal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/dev/vendor/micromodal.min.js -------------------------------------------------------------------------------- /inventory/invoices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/invoices/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/admin.py -------------------------------------------------------------------------------- /inventory/invoices/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/invoices/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/api/serializers.py -------------------------------------------------------------------------------- /inventory/invoices/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/invoices/api/tests/test_invoices_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/api/tests/test_invoices_api.py -------------------------------------------------------------------------------- /inventory/invoices/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/api/urls.py -------------------------------------------------------------------------------- /inventory/invoices/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/api/views.py -------------------------------------------------------------------------------- /inventory/invoices/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/forms.py -------------------------------------------------------------------------------- /inventory/invoices/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/invoices/migrations/0002_auto_20180505_1903.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/migrations/0002_auto_20180505_1903.py -------------------------------------------------------------------------------- /inventory/invoices/migrations/0003_auto_20200801_1652.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/migrations/0003_auto_20200801_1652.py -------------------------------------------------------------------------------- /inventory/invoices/migrations/0004_auto_20210516_1312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/migrations/0004_auto_20210516_1312.py -------------------------------------------------------------------------------- /inventory/invoices/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/invoices/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/models.py -------------------------------------------------------------------------------- /inventory/invoices/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/invoices/tests/test_invoice_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/invoices/tests/test_invoice_models.py -------------------------------------------------------------------------------- /inventory/invoices/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/locations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/locations/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/admin.py -------------------------------------------------------------------------------- /inventory/locations/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/locations/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/api/serializers.py -------------------------------------------------------------------------------- /inventory/locations/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/locations/api/tests/test_locations_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/api/tests/test_locations_api.py -------------------------------------------------------------------------------- /inventory/locations/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/api/urls.py -------------------------------------------------------------------------------- /inventory/locations/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/api/views.py -------------------------------------------------------------------------------- /inventory/locations/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/forms.py -------------------------------------------------------------------------------- /inventory/locations/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/locations/migrations/0002_auto_20170610_1325.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/migrations/0002_auto_20170610_1325.py -------------------------------------------------------------------------------- /inventory/locations/migrations/0003_auto_20210516_1312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/migrations/0003_auto_20210516_1312.py -------------------------------------------------------------------------------- /inventory/locations/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/locations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/models.py -------------------------------------------------------------------------------- /inventory/locations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/locations/tests/test_location_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/tests/test_location_models.py -------------------------------------------------------------------------------- /inventory/locations/tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/tests/test_validation.py -------------------------------------------------------------------------------- /inventory/locations/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/urls.py -------------------------------------------------------------------------------- /inventory/locations/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/locations/validation.py -------------------------------------------------------------------------------- /inventory/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/admin.py -------------------------------------------------------------------------------- /inventory/projects/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/projects/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/api/serializers.py -------------------------------------------------------------------------------- /inventory/projects/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/projects/api/tests/test_projects_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/api/tests/test_projects_api.py -------------------------------------------------------------------------------- /inventory/projects/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/api/urls.py -------------------------------------------------------------------------------- /inventory/projects/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/api/views.py -------------------------------------------------------------------------------- /inventory/projects/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/forms.py -------------------------------------------------------------------------------- /inventory/projects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/projects/migrations/0002_auto_20170610_1325.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/migrations/0002_auto_20170610_1325.py -------------------------------------------------------------------------------- /inventory/projects/migrations/0003_auto_20200802_1205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/migrations/0003_auto_20200802_1205.py -------------------------------------------------------------------------------- /inventory/projects/migrations/0004_auto_20200806_1501.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/migrations/0004_auto_20200806_1501.py -------------------------------------------------------------------------------- /inventory/projects/migrations/0005_auto_20210516_1312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/migrations/0005_auto_20210516_1312.py -------------------------------------------------------------------------------- /inventory/projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/projects/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/models.py -------------------------------------------------------------------------------- /inventory/projects/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/projects/tests/test_projects_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/projects/tests/test_projects_models.py -------------------------------------------------------------------------------- /inventory/projects/urls.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /inventory/projects/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/regions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/__init__.py -------------------------------------------------------------------------------- /inventory/regions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/admin.py -------------------------------------------------------------------------------- /inventory/regions/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/regions/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/api/serializers.py -------------------------------------------------------------------------------- /inventory/regions/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/regions/api/tests/test_regions_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/api/tests/test_regions_api.py -------------------------------------------------------------------------------- /inventory/regions/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/api/urls.py -------------------------------------------------------------------------------- /inventory/regions/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/api/views.py -------------------------------------------------------------------------------- /inventory/regions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/apps.py -------------------------------------------------------------------------------- /inventory/regions/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/forms.py -------------------------------------------------------------------------------- /inventory/regions/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/regions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/regions/management/commands/parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/management/commands/parsers/__init__.py -------------------------------------------------------------------------------- /inventory/regions/management/commands/parsers/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/management/commands/parsers/country.py -------------------------------------------------------------------------------- /inventory/regions/management/commands/parsers/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/management/commands/parsers/currency.py -------------------------------------------------------------------------------- /inventory/regions/management/commands/parsers/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/management/commands/parsers/language.py -------------------------------------------------------------------------------- /inventory/regions/management/commands/parsers/subdivision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/management/commands/parsers/subdivision.py -------------------------------------------------------------------------------- /inventory/regions/management/commands/parsers/timezone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/management/commands/parsers/timezone.py -------------------------------------------------------------------------------- /inventory/regions/management/commands/populate_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/management/commands/populate_regions.py -------------------------------------------------------------------------------- /inventory/regions/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/regions/migrations/0002_auto_20210516_1312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/migrations/0002_auto_20210516_1312.py -------------------------------------------------------------------------------- /inventory/regions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/regions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/models.py -------------------------------------------------------------------------------- /inventory/regions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/regions/tests/test_region_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/regions/tests/test_region_models.py -------------------------------------------------------------------------------- /inventory/regions/urls.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /inventory/regions/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/settings/__init__.py: -------------------------------------------------------------------------------- 1 | from .local import * 2 | -------------------------------------------------------------------------------- /inventory/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/settings/base.py -------------------------------------------------------------------------------- /inventory/settings/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/settings/development.py -------------------------------------------------------------------------------- /inventory/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/settings/production.py -------------------------------------------------------------------------------- /inventory/settings/staging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/settings/staging.py -------------------------------------------------------------------------------- /inventory/settings/travis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/settings/travis.py -------------------------------------------------------------------------------- /inventory/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/sites/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/sites/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/sites/api/urls.py -------------------------------------------------------------------------------- /inventory/sites/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/sites/api/views.py -------------------------------------------------------------------------------- /inventory/sites/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/sites/urls.py -------------------------------------------------------------------------------- /inventory/sites/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/sites/views.py -------------------------------------------------------------------------------- /inventory/suppliers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/suppliers/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/admin.py -------------------------------------------------------------------------------- /inventory/suppliers/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/suppliers/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/api/serializers.py -------------------------------------------------------------------------------- /inventory/suppliers/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/suppliers/api/tests/test_suppliers_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/api/tests/test_suppliers_api.py -------------------------------------------------------------------------------- /inventory/suppliers/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/api/urls.py -------------------------------------------------------------------------------- /inventory/suppliers/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/api/views.py -------------------------------------------------------------------------------- /inventory/suppliers/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/suppliers/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/migrations/0001_initial.py -------------------------------------------------------------------------------- /inventory/suppliers/migrations/0002_alter_supplier_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/migrations/0002_alter_supplier_id.py -------------------------------------------------------------------------------- /inventory/suppliers/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/suppliers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/models.py -------------------------------------------------------------------------------- /inventory/suppliers/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/suppliers/tests/test_supplier_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/suppliers/tests/test_supplier_models.py -------------------------------------------------------------------------------- /inventory/suppliers/urls.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /inventory/suppliers/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/base.html -------------------------------------------------------------------------------- /inventory/templates/includes/_footer_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/includes/_footer_site.html -------------------------------------------------------------------------------- /inventory/templates/includes/_header_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/includes/_header_site.html -------------------------------------------------------------------------------- /inventory/templates/modals/_alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/modals/_alert.html -------------------------------------------------------------------------------- /inventory/templates/modals/_login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/modals/_login.html -------------------------------------------------------------------------------- /inventory/templates/modals/_logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/modals/_logout.html -------------------------------------------------------------------------------- /inventory/templates/modals/_notify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/modals/_notify.html -------------------------------------------------------------------------------- /inventory/templates/modals/_tmp_notify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/modals/_tmp_notify.html -------------------------------------------------------------------------------- /inventory/templates/sites/_accounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/sites/_accounts.html -------------------------------------------------------------------------------- /inventory/templates/sites/_invoices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/sites/_invoices.html -------------------------------------------------------------------------------- /inventory/templates/sites/_projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/sites/_projects.html -------------------------------------------------------------------------------- /inventory/templates/sites/site_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/templates/sites/site_home.html -------------------------------------------------------------------------------- /inventory/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/urls.py -------------------------------------------------------------------------------- /inventory/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/inventory/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/manage.py -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/requirements/development.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- 1 | # Include the bare minimum. 2 | -r base.txt 3 | 4 | ipython 5 | -------------------------------------------------------------------------------- /requirements/staging.txt: -------------------------------------------------------------------------------- 1 | # Include the bare minimum. 2 | -r base.txt 3 | 4 | ipython 5 | -------------------------------------------------------------------------------- /requirements/travis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/requirements/travis.txt -------------------------------------------------------------------------------- /run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/run_test.sh -------------------------------------------------------------------------------- /server/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/server/README.rst -------------------------------------------------------------------------------- /server/app.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/server/app.wsgi -------------------------------------------------------------------------------- /server/inventory-prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/server/inventory-prod.conf -------------------------------------------------------------------------------- /server/inventory-stage.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/server/inventory-stage.conf -------------------------------------------------------------------------------- /server/inventory.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/server/inventory.conf -------------------------------------------------------------------------------- /server/redis.conf.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/server/redis.conf.dev -------------------------------------------------------------------------------- /setup_settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnobile2012/inventory/HEAD/setup_settings --------------------------------------------------------------------------------