├── .DS_Store ├── .gitignore ├── LICENSE ├── Py.png ├── README.md ├── apps ├── .DS_Store ├── __init__.py ├── account │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── PyInvoiceState.json │ ├── forms │ │ ├── __init__.py │ │ ├── invoice.py │ │ └── move.py │ ├── info.json │ ├── management │ │ └── commands │ │ │ └── init_account.py │ ├── models │ │ ├── __init__.py │ │ ├── invoice.py │ │ ├── journal.py │ │ ├── move.py │ │ └── plan.py │ ├── reports │ │ ├── __init__.py │ │ └── invoicepdf.py │ ├── signals.py │ ├── templates │ │ ├── account │ │ │ ├── delete.html │ │ │ └── menu.html │ │ ├── invoice │ │ │ ├── detail.html │ │ │ └── form.html │ │ └── move │ │ │ ├── detail.html │ │ │ └── form.html │ ├── tests.py │ ├── translation.py │ ├── urls │ │ ├── __init__.py │ │ ├── invoice.py │ │ ├── journal.py │ │ ├── move.py │ │ └── plan.py │ └── views │ │ ├── __init__.py │ │ ├── invoice.py │ │ ├── journal.py │ │ ├── move.py │ │ └── plan.py ├── base │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── common.py │ ├── data │ │ ├── PyBi.csv │ │ ├── PyMeta.csv │ │ ├── PyParameter.csv │ │ ├── PyPartner.csv │ │ ├── PyUser.csv │ │ └── PyWParameter.csv │ ├── demo │ │ └── PyMeta.csv │ ├── fixtures │ │ ├── PyCountry.json │ │ └── PyCurrency.json │ ├── forms │ │ ├── __init__.py │ │ ├── company.py │ │ ├── partner.py │ │ └── product.py │ ├── home_urls.py │ ├── locale │ │ └── es │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── management │ │ └── commands │ │ │ ├── init_pyerp.py │ │ │ └── install_plugin.py │ ├── models │ │ ├── __init__.py │ │ ├── attribute.py │ │ ├── base_config.py │ │ ├── bi.py │ │ ├── channel.py │ │ ├── comment.py │ │ ├── company.py │ │ ├── country.py │ │ ├── cron.py │ │ ├── currency.py │ │ ├── email.py │ │ ├── event.py │ │ ├── faq.py │ │ ├── father.py │ │ ├── file.py │ │ ├── image.py │ │ ├── log.py │ │ ├── menu.py │ │ ├── message.py │ │ ├── meta.py │ │ ├── note.py │ │ ├── page.py │ │ ├── parameter.py │ │ ├── partner.py │ │ ├── plugin.py │ │ ├── post.py │ │ ├── product.py │ │ ├── product_brand.py │ │ ├── product_category.py │ │ ├── product_category_uom.py │ │ ├── product_webcategory.py │ │ ├── sequence.py │ │ ├── tag.py │ │ ├── tax.py │ │ ├── uom.py │ │ ├── usercustom.py │ │ ├── variant.py │ │ ├── website_config.py │ │ ├── wparameter.py │ │ └── wpayment.py │ ├── rename_image.py │ ├── static │ │ ├── bootstrap_datepicker_plus │ │ │ ├── css │ │ │ │ └── datepicker-widget.css │ │ │ └── js │ │ │ │ └── datepicker-widget.js │ │ ├── css │ │ │ ├── company-form.css │ │ │ ├── cropper copy.css │ │ │ ├── cropper.css │ │ │ ├── cropper.min.css │ │ │ ├── formset.css │ │ │ ├── magnific-popup.css │ │ │ ├── main.css │ │ │ ├── styles-home.css │ │ │ └── swiper.css │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── adminlte.css │ │ │ │ ├── adminlte.css.map │ │ │ │ ├── adminlte.min.css │ │ │ │ └── adminlte.min.css.map │ │ │ ├── favicon.png │ │ │ ├── favicon_white.png │ │ │ ├── img │ │ │ │ ├── AdminLTELogo.png │ │ │ │ ├── avatar.png │ │ │ │ ├── avatar04.png │ │ │ │ ├── avatar2.png │ │ │ │ ├── avatar3.png │ │ │ │ ├── avatar5.png │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── credit │ │ │ │ │ ├── american-express.png │ │ │ │ │ ├── cirrus.png │ │ │ │ │ ├── mastercard.png │ │ │ │ │ ├── mestro.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── paypal2.png │ │ │ │ │ └── visa.png │ │ │ │ ├── default-150x150.png │ │ │ │ ├── icons.png │ │ │ │ ├── photo1.png │ │ │ │ ├── photo2.png │ │ │ │ ├── photo3.jpg │ │ │ │ ├── photo4.jpg │ │ │ │ ├── prod-1.jpg │ │ │ │ ├── prod-2.jpg │ │ │ │ ├── prod-3.jpg │ │ │ │ ├── prod-4.jpg │ │ │ │ ├── prod-5.jpg │ │ │ │ ├── user1-128x128.jpg │ │ │ │ ├── user2-160x160.jpg │ │ │ │ ├── user3-128x128.jpg │ │ │ │ ├── user4-128x128.jpg │ │ │ │ ├── user5-128x128.jpg │ │ │ │ ├── user6-128x128.jpg │ │ │ │ ├── user7-128x128.jpg │ │ │ │ └── user8-128x128.jpg │ │ │ └── js │ │ │ │ ├── adminlte.js │ │ │ │ ├── adminlte.js.map │ │ │ │ ├── adminlte.min.js │ │ │ │ ├── adminlte.min.js.map │ │ │ │ ├── demo.js │ │ │ │ └── pages │ │ │ │ ├── dashboard.js │ │ │ │ ├── dashboard2.js │ │ │ │ └── dashboard3.js │ │ ├── home │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── default.min.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ ├── magnific-popup.css │ │ │ │ ├── styles.css │ │ │ │ └── swiper.css │ │ │ ├── favicon.png │ │ │ ├── images │ │ │ │ ├── contact-background.jpg │ │ │ │ ├── customer-logo-1.png │ │ │ │ ├── customer-logo-2.png │ │ │ │ ├── customer-logo-3.png │ │ │ │ ├── customer-logo-4.png │ │ │ │ ├── customer-logo-5.png │ │ │ │ ├── customer-logo-6.png │ │ │ │ ├── details-1-office-worker.svg │ │ │ │ ├── details-2-office-team-work.svg │ │ │ │ ├── details-lightbox-1.svg │ │ │ │ ├── details-lightbox-2.svg │ │ │ │ ├── down-arrow.png │ │ │ │ ├── header-background.png │ │ │ │ ├── header-teamwork.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── services-icon-1.svg │ │ │ │ ├── services-icon-2.svg │ │ │ │ ├── services-icon-3.svg │ │ │ │ ├── statement-icon-1.svg │ │ │ │ ├── team-member-1.svg │ │ │ │ ├── team-member-2.svg │ │ │ │ ├── team-member-3.svg │ │ │ │ ├── team-member-4.svg │ │ │ │ ├── testimonial-1.svg │ │ │ │ ├── testimonial-2.svg │ │ │ │ ├── testimonial-3.svg │ │ │ │ ├── testimonials-2-men-talking.svg │ │ │ │ ├── testimonials-background.png │ │ │ │ ├── up-arrow.png │ │ │ │ └── video-frame.svg │ │ │ ├── img │ │ │ │ ├── logo.png │ │ │ │ ├── marlon.jpg │ │ │ │ └── pyerp.png │ │ │ ├── js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── highlight.min.js │ │ │ │ ├── jquery.easing.min.js │ │ │ │ ├── jquery.magnific-popup.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── popper.min.js │ │ │ │ ├── scripts.js │ │ │ │ ├── swiper.min.js │ │ │ │ └── validator.min.js │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── img │ │ │ ├── 174848.svg │ │ │ ├── 174851.svg │ │ │ ├── 174855.svg │ │ │ ├── 174857.svg │ │ │ ├── 174863.svg │ │ │ ├── 174876.svg │ │ │ └── 174883.svg │ │ ├── js │ │ │ ├── agency.js │ │ │ ├── agency.min.js │ │ │ ├── company-form.js │ │ │ ├── contact_me.js │ │ │ ├── cropper.js │ │ │ ├── cropper.min.js │ │ │ ├── cropper1.js │ │ │ ├── custom_formset.js │ │ │ ├── jqBootstrapValidation.js │ │ │ └── test-color-widgets.js │ │ ├── plugins │ │ │ ├── bootstrap-colorpicker │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ │ ├── bootstrap-colorpicker.css.map │ │ │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ │ │ └── bootstrap-colorpicker.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ │ ├── bootstrap-colorpicker.js.map │ │ │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ │ │ └── bootstrap-colorpicker.min.js.map │ │ │ ├── bootstrap-slider │ │ │ │ ├── bootstrap-slider.js │ │ │ │ ├── bootstrap-slider.min.js │ │ │ │ └── css │ │ │ │ │ ├── bootstrap-slider.css │ │ │ │ │ └── bootstrap-slider.min.css │ │ │ ├── bootstrap │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── bootstrap4-duallistbox │ │ │ │ ├── bootstrap-duallistbox.css │ │ │ │ ├── bootstrap-duallistbox.min.css │ │ │ │ ├── jquery.bootstrap-duallistbox.js │ │ │ │ └── jquery.bootstrap-duallistbox.min.js │ │ │ ├── chart.js │ │ │ │ ├── Chart.bundle.js │ │ │ │ ├── Chart.bundle.min.js │ │ │ │ ├── Chart.css │ │ │ │ ├── Chart.js │ │ │ │ ├── Chart.min.css │ │ │ │ ├── Chart.min.js │ │ │ │ └── docs │ │ │ │ │ ├── axes │ │ │ │ │ ├── cartesian │ │ │ │ │ │ ├── category.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── linear.html │ │ │ │ │ │ ├── logarithmic.html │ │ │ │ │ │ └── time.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── labelling.html │ │ │ │ │ ├── radial │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── linear.html │ │ │ │ │ └── styling.html │ │ │ │ │ ├── charts │ │ │ │ │ ├── area.html │ │ │ │ │ ├── bar.html │ │ │ │ │ ├── bubble.html │ │ │ │ │ ├── doughnut.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── line.html │ │ │ │ │ ├── mixed.html │ │ │ │ │ ├── polar.html │ │ │ │ │ ├── radar.html │ │ │ │ │ └── scatter.html │ │ │ │ │ ├── configuration │ │ │ │ │ ├── animations.html │ │ │ │ │ ├── elements.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── legend.html │ │ │ │ │ ├── title.html │ │ │ │ │ └── tooltip.html │ │ │ │ │ ├── developers │ │ │ │ │ ├── api.html │ │ │ │ │ ├── axes.html │ │ │ │ │ ├── charts.html │ │ │ │ │ ├── contributing.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── plugins.html │ │ │ │ │ └── updates.html │ │ │ │ │ ├── general │ │ │ │ │ ├── colors.html │ │ │ │ │ ├── device-pixel-ratio.html │ │ │ │ │ ├── device-pixel-ratio.md │ │ │ │ │ ├── fonts.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── interactions │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── modes.html │ │ │ │ │ ├── options.html │ │ │ │ │ └── responsive.html │ │ │ │ │ ├── getting-started │ │ │ │ │ ├── index.html │ │ │ │ │ ├── installation.html │ │ │ │ │ ├── integration.html │ │ │ │ │ └── usage.html │ │ │ │ │ ├── gitbook │ │ │ │ │ ├── fonts │ │ │ │ │ │ └── fontawesome │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ │ ├── gitbook-plugin-anchorjs │ │ │ │ │ │ └── anchor-style.js │ │ │ │ │ ├── gitbook-plugin-chartjs │ │ │ │ │ │ ├── Chart.bundle.js │ │ │ │ │ │ ├── Chart.bundle.min.js │ │ │ │ │ │ ├── Chart.js │ │ │ │ │ │ ├── Chart.min.js │ │ │ │ │ │ ├── chartjs-plugin-deferred.js │ │ │ │ │ │ ├── chartjs-plugin-deferred.min.js │ │ │ │ │ │ └── style.css │ │ │ │ │ ├── gitbook-plugin-fontsettings │ │ │ │ │ │ ├── fontsettings.js │ │ │ │ │ │ └── website.css │ │ │ │ │ ├── gitbook-plugin-ga │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── gitbook-plugin-highlight │ │ │ │ │ │ ├── ebook.css │ │ │ │ │ │ └── website.css │ │ │ │ │ ├── gitbook-plugin-search-plus │ │ │ │ │ │ ├── jquery.mark.min.js │ │ │ │ │ │ ├── search.css │ │ │ │ │ │ └── search.js │ │ │ │ │ ├── gitbook-plugin-sharing │ │ │ │ │ │ └── buttons.js │ │ │ │ │ ├── gitbook.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── apple-touch-icon-precomposed-152.png │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ ├── style.css │ │ │ │ │ └── theme.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── notes │ │ │ │ │ ├── comparison.html │ │ │ │ │ ├── extensions.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── license.html │ │ │ │ │ ├── search_plus_index.json │ │ │ │ │ └── style.css │ │ │ ├── datatables │ │ │ │ ├── dataTables.bootstrap4.css │ │ │ │ ├── dataTables.bootstrap4.js │ │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ │ ├── extensions │ │ │ │ │ ├── AutoFill │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ │ │ │ └── dataTables.autoFill.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── columns.html │ │ │ │ │ │ │ ├── complete-callback.html │ │ │ │ │ │ │ ├── fill-both.html │ │ │ │ │ │ │ ├── fill-horizontal.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── step-callback.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── filler.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ │ │ │ └── dataTables.autoFill.min.js │ │ │ │ │ ├── Buttons │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── buttons.bootstrap.css │ │ │ │ │ │ │ ├── buttons.bootstrap.min.css │ │ │ │ │ │ │ ├── buttons.bootstrap4.css │ │ │ │ │ │ │ ├── buttons.bootstrap4.min.css │ │ │ │ │ │ │ ├── buttons.dataTables.css │ │ │ │ │ │ │ ├── buttons.dataTables.min.css │ │ │ │ │ │ │ ├── buttons.foundation.css │ │ │ │ │ │ │ ├── buttons.foundation.min.css │ │ │ │ │ │ │ ├── buttons.jqueryui.css │ │ │ │ │ │ │ ├── buttons.jqueryui.min.css │ │ │ │ │ │ │ ├── buttons.semanticui.css │ │ │ │ │ │ │ ├── buttons.semanticui.min.css │ │ │ │ │ │ │ ├── common.scss │ │ │ │ │ │ │ └── mixins.scss │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── buttons.bootstrap4.min.js │ │ │ │ │ │ │ ├── buttons.flash.min.js │ │ │ │ │ │ │ ├── buttons.html5.js │ │ │ │ │ │ │ ├── buttons.html5.min.js │ │ │ │ │ │ │ ├── buttons.print.js │ │ │ │ │ │ │ ├── buttons.print.min.js │ │ │ │ │ │ │ └── dataTables.buttons.min.js │ │ │ │ │ │ └── swf │ │ │ │ │ │ │ └── flashExport.swf │ │ │ │ │ ├── ColReorder │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ │ │ │ └── dataTables.colReorder.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── alt_insert.html │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ ├── fixedcolumns.html │ │ │ │ │ │ │ ├── fixedheader.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── predefined.html │ │ │ │ │ │ │ ├── realtime.html │ │ │ │ │ │ │ ├── reset.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ ├── server_side.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── state_save.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── insert.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ │ │ │ └── dataTables.colReorder.min.js │ │ │ │ │ ├── ColVis │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.colVis.css │ │ │ │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── button_order.html │ │ │ │ │ │ │ ├── exclude_columns.html │ │ │ │ │ │ │ ├── group_columns.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── mouseover.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── restore.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── text.html │ │ │ │ │ │ │ ├── title_callback.html │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ └── two_tables_identical.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.colVis.js │ │ │ │ │ │ │ └── dataTables.colVis.min.js │ │ │ │ │ ├── FixedColumns │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── col_filter.html │ │ │ │ │ │ │ ├── colvis.html │ │ │ │ │ │ │ ├── css_size.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── index_column.html │ │ │ │ │ │ │ ├── left_right_columns.html │ │ │ │ │ │ │ ├── right_column.html │ │ │ │ │ │ │ ├── rowspan.html │ │ │ │ │ │ │ ├── server-side-processing.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── size_fixed.html │ │ │ │ │ │ │ ├── size_fluid.html │ │ │ │ │ │ │ └── two_columns.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ │ │ │ └── dataTables.fixedColumns.min.js │ │ │ │ │ ├── FixedHeader │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── header_footer.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ ├── top_left_right.html │ │ │ │ │ │ │ ├── two_tables.html │ │ │ │ │ │ │ └── zIndexes.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ │ │ │ └── dataTables.fixedHeader.min.js │ │ │ │ │ ├── KeyTable │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ │ │ │ └── dataTables.keyTable.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── events.html │ │ │ │ │ │ │ ├── html.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── scrolling.html │ │ │ │ │ │ │ └── simple.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ │ │ │ └── dataTables.keyTable.min.js │ │ │ │ │ ├── Responsive │ │ │ │ │ │ ├── License.txt │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.responsive.css │ │ │ │ │ │ │ └── dataTables.responsive.scss │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── child-rows │ │ │ │ │ │ │ │ ├── column-control.html │ │ │ │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── right-column.html │ │ │ │ │ │ │ │ └── whole-row-control.html │ │ │ │ │ │ │ ├── display-control │ │ │ │ │ │ │ │ ├── auto.html │ │ │ │ │ │ │ │ ├── classes.html │ │ │ │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── init-classes.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── initialisation │ │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ │ ├── className.html │ │ │ │ │ │ │ │ ├── default.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── new.html │ │ │ │ │ │ │ │ └── option.html │ │ │ │ │ │ │ └── styling │ │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ │ ├── compact.html │ │ │ │ │ │ │ │ ├── foundation.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── scrolling.html │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.responsive.js │ │ │ │ │ │ │ └── dataTables.responsive.min.js │ │ │ │ │ ├── Scroller │ │ │ │ │ │ ├── Readme.txt │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.scroller.css │ │ │ │ │ │ │ └── dataTables.scroller.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── api_scrolling.html │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ ├── 2500.txt │ │ │ │ │ │ │ │ └── ssp.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── large_js_source.html │ │ │ │ │ │ │ ├── server-side_processing.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── state_saving.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── loading-background.png │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── dataTables.scroller.js │ │ │ │ │ │ │ └── dataTables.scroller.min.js │ │ │ │ │ ├── TableTools │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── dataTables.tableTools.css │ │ │ │ │ │ │ └── dataTables.tableTools.min.css │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── ajax.html │ │ │ │ │ │ │ ├── alter_buttons.html │ │ │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ │ │ ├── button_text.html │ │ │ │ │ │ │ ├── collection.html │ │ │ │ │ │ │ ├── defaults.html │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jqueryui.html │ │ │ │ │ │ │ ├── multi_instance.html │ │ │ │ │ │ │ ├── multiple_tables.html │ │ │ │ │ │ │ ├── new_init.html │ │ │ │ │ │ │ ├── pdf_message.html │ │ │ │ │ │ │ ├── plug-in.html │ │ │ │ │ │ │ ├── select_column.html │ │ │ │ │ │ │ ├── select_multi.html │ │ │ │ │ │ │ ├── select_os.html │ │ │ │ │ │ │ ├── select_single.html │ │ │ │ │ │ │ ├── simple.html │ │ │ │ │ │ │ └── swf_path.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── collection.png │ │ │ │ │ │ │ ├── collection_hover.png │ │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ │ ├── copy_hover.png │ │ │ │ │ │ │ ├── csv.png │ │ │ │ │ │ │ ├── csv_hover.png │ │ │ │ │ │ │ ├── pdf.png │ │ │ │ │ │ │ ├── pdf_hover.png │ │ │ │ │ │ │ ├── print.png │ │ │ │ │ │ │ ├── print_hover.png │ │ │ │ │ │ │ ├── psd │ │ │ │ │ │ │ │ ├── collection.psd │ │ │ │ │ │ │ │ ├── copy document.psd │ │ │ │ │ │ │ │ ├── file_types.psd │ │ │ │ │ │ │ │ └── printer.psd │ │ │ │ │ │ │ ├── xls.png │ │ │ │ │ │ │ └── xls_hover.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── dataTables.tableTools.js │ │ │ │ │ │ │ └── dataTables.tableTools.min.js │ │ │ │ │ │ └── swf │ │ │ │ │ │ │ ├── copy_csv_xls.swf │ │ │ │ │ │ │ └── copy_csv_xls_pdf.swf │ │ │ │ │ └── pdfmake │ │ │ │ │ │ ├── pdfmake.js │ │ │ │ │ │ ├── pdfmake.min.js │ │ │ │ │ │ └── vfs_fonts.js │ │ │ │ ├── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── jquery.dataTables.css │ │ │ │ ├── jquery.dataTables.js │ │ │ │ ├── jquery.dataTables.min.css │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── fastclick │ │ │ │ └── fastclick.js │ │ │ ├── flag-icon-css │ │ │ │ ├── css │ │ │ │ │ ├── flag-icon.css │ │ │ │ │ └── flag-icon.min.css │ │ │ │ └── flags │ │ │ │ │ ├── 1x1 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── xk.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ │ │ └── 4x3 │ │ │ │ │ ├── ad.svg │ │ │ │ │ ├── ae.svg │ │ │ │ │ ├── af.svg │ │ │ │ │ ├── ag.svg │ │ │ │ │ ├── ai.svg │ │ │ │ │ ├── al.svg │ │ │ │ │ ├── am.svg │ │ │ │ │ ├── ao.svg │ │ │ │ │ ├── aq.svg │ │ │ │ │ ├── ar.svg │ │ │ │ │ ├── as.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── au.svg │ │ │ │ │ ├── aw.svg │ │ │ │ │ ├── ax.svg │ │ │ │ │ ├── az.svg │ │ │ │ │ ├── ba.svg │ │ │ │ │ ├── bb.svg │ │ │ │ │ ├── bd.svg │ │ │ │ │ ├── be.svg │ │ │ │ │ ├── bf.svg │ │ │ │ │ ├── bg.svg │ │ │ │ │ ├── bh.svg │ │ │ │ │ ├── bi.svg │ │ │ │ │ ├── bj.svg │ │ │ │ │ ├── bl.svg │ │ │ │ │ ├── bm.svg │ │ │ │ │ ├── bn.svg │ │ │ │ │ ├── bo.svg │ │ │ │ │ ├── bq.svg │ │ │ │ │ ├── br.svg │ │ │ │ │ ├── bs.svg │ │ │ │ │ ├── bt.svg │ │ │ │ │ ├── bv.svg │ │ │ │ │ ├── bw.svg │ │ │ │ │ ├── by.svg │ │ │ │ │ ├── bz.svg │ │ │ │ │ ├── ca.svg │ │ │ │ │ ├── cc.svg │ │ │ │ │ ├── cd.svg │ │ │ │ │ ├── cf.svg │ │ │ │ │ ├── cg.svg │ │ │ │ │ ├── ch.svg │ │ │ │ │ ├── ci.svg │ │ │ │ │ ├── ck.svg │ │ │ │ │ ├── cl.svg │ │ │ │ │ ├── cm.svg │ │ │ │ │ ├── cn.svg │ │ │ │ │ ├── co.svg │ │ │ │ │ ├── cr.svg │ │ │ │ │ ├── cu.svg │ │ │ │ │ ├── cv.svg │ │ │ │ │ ├── cw.svg │ │ │ │ │ ├── cx.svg │ │ │ │ │ ├── cy.svg │ │ │ │ │ ├── cz.svg │ │ │ │ │ ├── de.svg │ │ │ │ │ ├── dj.svg │ │ │ │ │ ├── dk.svg │ │ │ │ │ ├── dm.svg │ │ │ │ │ ├── do.svg │ │ │ │ │ ├── dz.svg │ │ │ │ │ ├── ec.svg │ │ │ │ │ ├── ee.svg │ │ │ │ │ ├── eg.svg │ │ │ │ │ ├── eh.svg │ │ │ │ │ ├── er.svg │ │ │ │ │ ├── es-ct.svg │ │ │ │ │ ├── es.svg │ │ │ │ │ ├── et.svg │ │ │ │ │ ├── eu.svg │ │ │ │ │ ├── fi.svg │ │ │ │ │ ├── fj.svg │ │ │ │ │ ├── fk.svg │ │ │ │ │ ├── fm.svg │ │ │ │ │ ├── fo.svg │ │ │ │ │ ├── fr.svg │ │ │ │ │ ├── ga.svg │ │ │ │ │ ├── gb-eng.svg │ │ │ │ │ ├── gb-nir.svg │ │ │ │ │ ├── gb-sct.svg │ │ │ │ │ ├── gb-wls.svg │ │ │ │ │ ├── gb.svg │ │ │ │ │ ├── gd.svg │ │ │ │ │ ├── ge.svg │ │ │ │ │ ├── gf.svg │ │ │ │ │ ├── gg.svg │ │ │ │ │ ├── gh.svg │ │ │ │ │ ├── gi.svg │ │ │ │ │ ├── gl.svg │ │ │ │ │ ├── gm.svg │ │ │ │ │ ├── gn.svg │ │ │ │ │ ├── gp.svg │ │ │ │ │ ├── gq.svg │ │ │ │ │ ├── gr.svg │ │ │ │ │ ├── gs.svg │ │ │ │ │ ├── gt.svg │ │ │ │ │ ├── gu.svg │ │ │ │ │ ├── gw.svg │ │ │ │ │ ├── gy.svg │ │ │ │ │ ├── hk.svg │ │ │ │ │ ├── hm.svg │ │ │ │ │ ├── hn.svg │ │ │ │ │ ├── hr.svg │ │ │ │ │ ├── ht.svg │ │ │ │ │ ├── hu.svg │ │ │ │ │ ├── id.svg │ │ │ │ │ ├── ie.svg │ │ │ │ │ ├── il.svg │ │ │ │ │ ├── im.svg │ │ │ │ │ ├── in.svg │ │ │ │ │ ├── io.svg │ │ │ │ │ ├── iq.svg │ │ │ │ │ ├── ir.svg │ │ │ │ │ ├── is.svg │ │ │ │ │ ├── it.svg │ │ │ │ │ ├── je.svg │ │ │ │ │ ├── jm.svg │ │ │ │ │ ├── jo.svg │ │ │ │ │ ├── jp.svg │ │ │ │ │ ├── ke.svg │ │ │ │ │ ├── kg.svg │ │ │ │ │ ├── kh.svg │ │ │ │ │ ├── ki.svg │ │ │ │ │ ├── km.svg │ │ │ │ │ ├── kn.svg │ │ │ │ │ ├── kp.svg │ │ │ │ │ ├── kr.svg │ │ │ │ │ ├── kw.svg │ │ │ │ │ ├── ky.svg │ │ │ │ │ ├── kz.svg │ │ │ │ │ ├── la.svg │ │ │ │ │ ├── lb.svg │ │ │ │ │ ├── lc.svg │ │ │ │ │ ├── li.svg │ │ │ │ │ ├── lk.svg │ │ │ │ │ ├── lr.svg │ │ │ │ │ ├── ls.svg │ │ │ │ │ ├── lt.svg │ │ │ │ │ ├── lu.svg │ │ │ │ │ ├── lv.svg │ │ │ │ │ ├── ly.svg │ │ │ │ │ ├── ma.svg │ │ │ │ │ ├── mc.svg │ │ │ │ │ ├── md.svg │ │ │ │ │ ├── me.svg │ │ │ │ │ ├── mf.svg │ │ │ │ │ ├── mg.svg │ │ │ │ │ ├── mh.svg │ │ │ │ │ ├── mk.svg │ │ │ │ │ ├── ml.svg │ │ │ │ │ ├── mm.svg │ │ │ │ │ ├── mn.svg │ │ │ │ │ ├── mo.svg │ │ │ │ │ ├── mp.svg │ │ │ │ │ ├── mq.svg │ │ │ │ │ ├── mr.svg │ │ │ │ │ ├── ms.svg │ │ │ │ │ ├── mt.svg │ │ │ │ │ ├── mu.svg │ │ │ │ │ ├── mv.svg │ │ │ │ │ ├── mw.svg │ │ │ │ │ ├── mx.svg │ │ │ │ │ ├── my.svg │ │ │ │ │ ├── mz.svg │ │ │ │ │ ├── na.svg │ │ │ │ │ ├── nc.svg │ │ │ │ │ ├── ne.svg │ │ │ │ │ ├── nf.svg │ │ │ │ │ ├── ng.svg │ │ │ │ │ ├── ni.svg │ │ │ │ │ ├── nl.svg │ │ │ │ │ ├── no.svg │ │ │ │ │ ├── np.svg │ │ │ │ │ ├── nr.svg │ │ │ │ │ ├── nu.svg │ │ │ │ │ ├── nz.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── pa.svg │ │ │ │ │ ├── pe.svg │ │ │ │ │ ├── pf.svg │ │ │ │ │ ├── pg.svg │ │ │ │ │ ├── ph.svg │ │ │ │ │ ├── pk.svg │ │ │ │ │ ├── pl.svg │ │ │ │ │ ├── pm.svg │ │ │ │ │ ├── pn.svg │ │ │ │ │ ├── pr.svg │ │ │ │ │ ├── ps.svg │ │ │ │ │ ├── pt.svg │ │ │ │ │ ├── pw.svg │ │ │ │ │ ├── py.svg │ │ │ │ │ ├── qa.svg │ │ │ │ │ ├── re.svg │ │ │ │ │ ├── ro.svg │ │ │ │ │ ├── rs.svg │ │ │ │ │ ├── ru.svg │ │ │ │ │ ├── rw.svg │ │ │ │ │ ├── sa.svg │ │ │ │ │ ├── sb.svg │ │ │ │ │ ├── sc.svg │ │ │ │ │ ├── sd.svg │ │ │ │ │ ├── se.svg │ │ │ │ │ ├── sg.svg │ │ │ │ │ ├── sh.svg │ │ │ │ │ ├── si.svg │ │ │ │ │ ├── sj.svg │ │ │ │ │ ├── sk.svg │ │ │ │ │ ├── sl.svg │ │ │ │ │ ├── sm.svg │ │ │ │ │ ├── sn.svg │ │ │ │ │ ├── so.svg │ │ │ │ │ ├── sr.svg │ │ │ │ │ ├── ss.svg │ │ │ │ │ ├── st.svg │ │ │ │ │ ├── sv.svg │ │ │ │ │ ├── sx.svg │ │ │ │ │ ├── sy.svg │ │ │ │ │ ├── sz.svg │ │ │ │ │ ├── tc.svg │ │ │ │ │ ├── td.svg │ │ │ │ │ ├── tf.svg │ │ │ │ │ ├── tg.svg │ │ │ │ │ ├── th.svg │ │ │ │ │ ├── tj.svg │ │ │ │ │ ├── tk.svg │ │ │ │ │ ├── tl.svg │ │ │ │ │ ├── tm.svg │ │ │ │ │ ├── tn.svg │ │ │ │ │ ├── to.svg │ │ │ │ │ ├── tr.svg │ │ │ │ │ ├── tt.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── tw.svg │ │ │ │ │ ├── tz.svg │ │ │ │ │ ├── ua.svg │ │ │ │ │ ├── ug.svg │ │ │ │ │ ├── um.svg │ │ │ │ │ ├── un.svg │ │ │ │ │ ├── us.svg │ │ │ │ │ ├── uy.svg │ │ │ │ │ ├── uz.svg │ │ │ │ │ ├── va.svg │ │ │ │ │ ├── vc.svg │ │ │ │ │ ├── ve.svg │ │ │ │ │ ├── vg.svg │ │ │ │ │ ├── vi.svg │ │ │ │ │ ├── vn.svg │ │ │ │ │ ├── vu.svg │ │ │ │ │ ├── wf.svg │ │ │ │ │ ├── ws.svg │ │ │ │ │ ├── xk.svg │ │ │ │ │ ├── ye.svg │ │ │ │ │ ├── yt.svg │ │ │ │ │ ├── za.svg │ │ │ │ │ ├── zm.svg │ │ │ │ │ └── zw.svg │ │ │ ├── flot-old │ │ │ │ ├── excanvas.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ ├── jquery.flot.image.js │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.min.js │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ └── jquery.flot.time.min.js │ │ │ ├── flot │ │ │ │ └── jquery.flot.js │ │ │ ├── fontawesome-free │ │ │ │ ├── css │ │ │ │ │ ├── all.css │ │ │ │ │ ├── all.min.css │ │ │ │ │ ├── brands.css │ │ │ │ │ ├── brands.min.css │ │ │ │ │ ├── fontawesome.css │ │ │ │ │ ├── fontawesome.min.css │ │ │ │ │ ├── regular.css │ │ │ │ │ ├── regular.min.css │ │ │ │ │ ├── solid.css │ │ │ │ │ ├── solid.min.css │ │ │ │ │ ├── svg-with-js.css │ │ │ │ │ ├── svg-with-js.min.css │ │ │ │ │ ├── v4-shims.css │ │ │ │ │ └── v4-shims.min.css │ │ │ │ └── webfonts │ │ │ │ │ ├── fa-brands-400.eot │ │ │ │ │ ├── fa-brands-400.svg │ │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ │ ├── fa-brands-400.woff │ │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ │ ├── fa-regular-400.eot │ │ │ │ │ ├── fa-regular-400.svg │ │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ │ ├── fa-regular-400.woff │ │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ │ ├── fa-solid-900.eot │ │ │ │ │ ├── fa-solid-900.svg │ │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ │ ├── fa-solid-900.woff │ │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── fullcalendar-bootstrap │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── main.css │ │ │ │ ├── main.d.ts │ │ │ │ ├── main.js │ │ │ │ ├── main.js.map │ │ │ │ ├── main.min.css │ │ │ │ ├── main.min.js │ │ │ │ └── package.json │ │ │ ├── fullcalendar-daygrid │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── main.css │ │ │ │ ├── main.d.ts │ │ │ │ ├── main.js │ │ │ │ ├── main.js.map │ │ │ │ ├── main.min.css │ │ │ │ ├── main.min.js │ │ │ │ └── package.json │ │ │ ├── fullcalendar-interaction │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── main.d.ts │ │ │ │ ├── main.js │ │ │ │ ├── main.js.map │ │ │ │ ├── main.min.js │ │ │ │ └── package.json │ │ │ ├── fullcalendar-timegrid │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── main.css │ │ │ │ ├── main.d.ts │ │ │ │ ├── main.js │ │ │ │ ├── main.js.map │ │ │ │ ├── main.min.css │ │ │ │ ├── main.min.js │ │ │ │ └── package.json │ │ │ ├── fullcalendar │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── locales-all.js │ │ │ │ ├── locales-all.js.map │ │ │ │ ├── locales-all.min.js │ │ │ │ ├── locales │ │ │ │ │ ├── af.js │ │ │ │ │ ├── af.js.map │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-dz.js.map │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-kw.js.map │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ly.js.map │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-ma.js.map │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-sa.js.map │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar-tn.js.map │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── ar.js.map │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bg.js.map │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── bs.js.map │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── ca.js.map │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cs.js.map │ │ │ │ │ ├── da.js │ │ │ │ │ ├── da.js.map │ │ │ │ │ ├── de.js │ │ │ │ │ ├── de.js.map │ │ │ │ │ ├── el.js │ │ │ │ │ ├── el.js.map │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-au.js.map │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-gb.js.map │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── en-nz.js.map │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es-us.js.map │ │ │ │ │ ├── es.js │ │ │ │ │ ├── es.js.map │ │ │ │ │ ├── et.js │ │ │ │ │ ├── et.js.map │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── eu.js.map │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fa.js.map │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fi.js.map │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ca.js.map │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr-ch.js.map │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fr.js.map │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gl.js.map │ │ │ │ │ ├── he.js │ │ │ │ │ ├── he.js.map │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hi.js.map │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hr.js.map │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hu.js.map │ │ │ │ │ ├── id.js │ │ │ │ │ ├── id.js.map │ │ │ │ │ ├── is.js │ │ │ │ │ ├── is.js.map │ │ │ │ │ ├── it.js │ │ │ │ │ ├── it.js.map │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ja.js.map │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── ka.js.map │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── kk.js.map │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ko.js.map │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lb.js.map │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lt.js.map │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── lv.js.map │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mk.js.map │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── ms.js.map │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nb.js.map │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nl.js.map │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── nn.js.map │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pl.js.map │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt-br.js.map │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── pt.js.map │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ro.js.map │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── ru.js.map │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sk.js.map │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sl.js.map │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sq.js.map │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr-cyrl.js.map │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sr.js.map │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sv.js.map │ │ │ │ │ ├── th.js │ │ │ │ │ ├── th.js.map │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tr.js.map │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── uk.js.map │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── vi.js.map │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-cn.js.map │ │ │ │ │ ├── zh-tw.js │ │ │ │ │ └── zh-tw.js.map │ │ │ │ ├── main.css │ │ │ │ ├── main.d.ts │ │ │ │ ├── main.js │ │ │ │ ├── main.js.map │ │ │ │ ├── main.min.css │ │ │ │ ├── main.min.js │ │ │ │ └── package.json │ │ │ ├── icheck-bootstrap │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── icheck-bootstrap.css │ │ │ │ ├── icheck-bootstrap.min.css │ │ │ │ └── package.json │ │ │ ├── inputmask │ │ │ │ ├── inputmask │ │ │ │ │ ├── bindings │ │ │ │ │ │ └── inputmask.binding.js │ │ │ │ │ ├── dependencyLibs │ │ │ │ │ │ ├── inputmask.dependencyLib.jqlite.js │ │ │ │ │ │ ├── inputmask.dependencyLib.jquery.js │ │ │ │ │ │ └── inputmask.dependencyLib.js │ │ │ │ │ ├── global │ │ │ │ │ │ └── window.js │ │ │ │ │ ├── inputmask.date.extensions.js │ │ │ │ │ ├── inputmask.extensions.js │ │ │ │ │ ├── inputmask.js │ │ │ │ │ ├── inputmask.numeric.extensions.js │ │ │ │ │ └── jquery.inputmask.js │ │ │ │ ├── jquery.inputmask.bundle.js │ │ │ │ └── min │ │ │ │ │ ├── inputmask │ │ │ │ │ ├── bindings │ │ │ │ │ │ └── inputmask.binding.min.js │ │ │ │ │ ├── dependencyLibs │ │ │ │ │ │ ├── inputmask.dependencyLib.jqlite.min.js │ │ │ │ │ │ ├── inputmask.dependencyLib.jquery.min.js │ │ │ │ │ │ └── inputmask.dependencyLib.min.js │ │ │ │ │ ├── global │ │ │ │ │ │ └── window.min.js │ │ │ │ │ ├── inputmask.date.extensions.min.js │ │ │ │ │ ├── inputmask.extensions.min.js │ │ │ │ │ ├── inputmask.min.js │ │ │ │ │ ├── inputmask.numeric.extensions.min.js │ │ │ │ │ └── jquery.inputmask.min.js │ │ │ │ │ └── jquery.inputmask.bundle.min.js │ │ │ ├── ion-rangeslider │ │ │ │ ├── .editorconfig │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── License.md │ │ │ │ ├── css │ │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ │ └── ion.rangeSlider.min.css │ │ │ │ ├── history.md │ │ │ │ ├── index.md │ │ │ │ ├── js │ │ │ │ │ ├── ion.rangeSlider.js │ │ │ │ │ └── ion.rangeSlider.min.js │ │ │ │ ├── less │ │ │ │ │ ├── _base.less │ │ │ │ │ ├── _mixins.less │ │ │ │ │ ├── irs.less │ │ │ │ │ └── skins │ │ │ │ │ │ ├── big.less │ │ │ │ │ │ ├── flat.less │ │ │ │ │ │ ├── modern.less │ │ │ │ │ │ ├── round.less │ │ │ │ │ │ ├── sharp.less │ │ │ │ │ │ └── square.less │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── jquery-knob │ │ │ │ └── jquery.knob.min.js │ │ │ ├── jquery-mapael │ │ │ │ ├── jquery.mapael.js │ │ │ │ ├── jquery.mapael.min.js │ │ │ │ └── maps │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── france_departments.js │ │ │ │ │ ├── france_departments.min.js │ │ │ │ │ ├── usa_states.js │ │ │ │ │ ├── usa_states.min.js │ │ │ │ │ ├── world_countries.js │ │ │ │ │ ├── world_countries.min.js │ │ │ │ │ ├── world_countries_mercator.js │ │ │ │ │ ├── world_countries_mercator.min.js │ │ │ │ │ ├── world_countries_miller.js │ │ │ │ │ └── world_countries_miller.min.js │ │ │ ├── jquery-mousewheel │ │ │ │ ├── ChangeLog.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ └── package.json │ │ │ ├── jquery-ui │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── external │ │ │ │ │ └── jquery │ │ │ │ │ │ └── jquery.js │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── index.html │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.js │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery-ui.min.js │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ ├── jquery-ui.theme.css │ │ │ │ ├── jquery-ui.theme.min.css │ │ │ │ └── package.json │ │ │ ├── jquery │ │ │ │ ├── core.js │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.min.map │ │ │ │ ├── jquery.slim.js │ │ │ │ ├── jquery.slim.min.js │ │ │ │ └── jquery.slim.min.map │ │ │ ├── jqvmap │ │ │ │ ├── jquery.vmap.js │ │ │ │ ├── jquery.vmap.min.js │ │ │ │ ├── jqvmap.css │ │ │ │ ├── jqvmap.min.css │ │ │ │ └── maps │ │ │ │ │ ├── continents │ │ │ │ │ ├── jquery.vmap.africa.js │ │ │ │ │ ├── jquery.vmap.asia.js │ │ │ │ │ ├── jquery.vmap.australia.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.north-america.js │ │ │ │ │ └── jquery.vmap.south-america.js │ │ │ │ │ ├── jquery.vmap.algeria.js │ │ │ │ │ ├── jquery.vmap.argentina.js │ │ │ │ │ ├── jquery.vmap.brazil.js │ │ │ │ │ ├── jquery.vmap.canada.js │ │ │ │ │ ├── jquery.vmap.croatia.js │ │ │ │ │ ├── jquery.vmap.europe.js │ │ │ │ │ ├── jquery.vmap.france.js │ │ │ │ │ ├── jquery.vmap.germany.js │ │ │ │ │ ├── jquery.vmap.greece.js │ │ │ │ │ ├── jquery.vmap.indonesia.js │ │ │ │ │ ├── jquery.vmap.iran.js │ │ │ │ │ ├── jquery.vmap.iraq.js │ │ │ │ │ ├── jquery.vmap.italy_provinces.js │ │ │ │ │ ├── jquery.vmap.italy_regions.js │ │ │ │ │ ├── jquery.vmap.new_regions_france.js │ │ │ │ │ ├── jquery.vmap.russia.js │ │ │ │ │ ├── jquery.vmap.serbia.js │ │ │ │ │ ├── jquery.vmap.tunisia.js │ │ │ │ │ ├── jquery.vmap.turkey.js │ │ │ │ │ ├── jquery.vmap.ukraine.js │ │ │ │ │ ├── jquery.vmap.usa.counties.js │ │ │ │ │ ├── jquery.vmap.usa.districts.js │ │ │ │ │ ├── jquery.vmap.usa.js │ │ │ │ │ └── jquery.vmap.world.js │ │ │ ├── jsgrid │ │ │ │ ├── demos │ │ │ │ │ ├── basic.html │ │ │ │ │ ├── batch-delete.html │ │ │ │ │ ├── custom-grid-field.html │ │ │ │ │ ├── custom-load-indicator.html │ │ │ │ │ ├── custom-row-renderer.html │ │ │ │ │ ├── custom-view.html │ │ │ │ │ ├── data-manipulation.html │ │ │ │ │ ├── db.js │ │ │ │ │ ├── demos.css │ │ │ │ │ ├── external-pager.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── loading-by-page.html │ │ │ │ │ ├── localization.html │ │ │ │ │ ├── odata-service.html │ │ │ │ │ ├── rows-reordering.html │ │ │ │ │ ├── sorting.html │ │ │ │ │ ├── static-data.html │ │ │ │ │ └── validation.html │ │ │ │ ├── i18n │ │ │ │ │ ├── jsgrid-de.js │ │ │ │ │ ├── jsgrid-es.js │ │ │ │ │ ├── jsgrid-fr.js │ │ │ │ │ ├── jsgrid-he.js │ │ │ │ │ ├── jsgrid-ja.js │ │ │ │ │ ├── jsgrid-ka.js │ │ │ │ │ ├── jsgrid-pl.js │ │ │ │ │ ├── jsgrid-pt-br.js │ │ │ │ │ ├── jsgrid-pt.js │ │ │ │ │ ├── jsgrid-ru.js │ │ │ │ │ ├── jsgrid-tr.js │ │ │ │ │ ├── jsgrid-zh-cn.js │ │ │ │ │ └── jsgrid-zh-tw.js │ │ │ │ ├── jsgrid-theme.css │ │ │ │ ├── jsgrid-theme.min.css │ │ │ │ ├── jsgrid.css │ │ │ │ ├── jsgrid.js │ │ │ │ ├── jsgrid.min.css │ │ │ │ └── jsgrid.min.js │ │ │ ├── moment │ │ │ │ ├── locale │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar-dz.js │ │ │ │ │ ├── ar-kw.js │ │ │ │ │ ├── ar-ly.js │ │ │ │ │ ├── ar-ma.js │ │ │ │ │ ├── ar-sa.js │ │ │ │ │ ├── ar-tn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── be.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bm.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bo.js │ │ │ │ │ ├── br.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cv.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-at.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dv.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-SG.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en-ie.js │ │ │ │ │ ├── en-il.js │ │ │ │ │ ├── en-nz.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es-do.js │ │ │ │ │ ├── es-us.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr-ch.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── fy.js │ │ │ │ │ ├── ga.js │ │ │ │ │ ├── gd.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gom-latn.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy-am.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it-ch.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── jv.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── kk.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── kn.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ky.js │ │ │ │ │ ├── lb.js │ │ │ │ │ ├── lo.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── me.js │ │ │ │ │ ├── mi.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ml.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── mr.js │ │ │ │ │ ├── ms-my.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── mt.js │ │ │ │ │ ├── my.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl-be.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── nn.js │ │ │ │ │ ├── pa-in.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sd.js │ │ │ │ │ ├── se.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── ss.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── sw.js │ │ │ │ │ ├── ta.js │ │ │ │ │ ├── te.js │ │ │ │ │ ├── tet.js │ │ │ │ │ ├── tg.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tl-ph.js │ │ │ │ │ ├── tlh.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tzl.js │ │ │ │ │ ├── tzm-latn.js │ │ │ │ │ ├── tzm.js │ │ │ │ │ ├── ug-cn.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ur.js │ │ │ │ │ ├── uz-latn.js │ │ │ │ │ ├── uz.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── x-pseudo.js │ │ │ │ │ ├── yo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh-hk.js │ │ │ │ │ └── zh-tw.js │ │ │ │ ├── locales.js │ │ │ │ ├── locales.min.js │ │ │ │ ├── moment-with-locales.js │ │ │ │ ├── moment-with-locales.min.js │ │ │ │ └── moment.min.js │ │ │ ├── morris │ │ │ │ ├── morris.css │ │ │ │ ├── morris.js │ │ │ │ └── morris.min.js │ │ │ ├── overlayScrollbars │ │ │ │ ├── css │ │ │ │ │ ├── OverlayScrollbars.css │ │ │ │ │ └── OverlayScrollbars.min.css │ │ │ │ └── js │ │ │ │ │ ├── OverlayScrollbars.js │ │ │ │ │ ├── OverlayScrollbars.min.js │ │ │ │ │ ├── jquery.overlayScrollbars.js │ │ │ │ │ └── jquery.overlayScrollbars.min.js │ │ │ ├── pace-progress │ │ │ │ ├── pace.js │ │ │ │ ├── pace.min.js │ │ │ │ └── themes │ │ │ │ │ ├── black │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── blue │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── green │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── orange │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── pink │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── purple │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── red │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── silver │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ ├── white │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ │ │ └── yellow │ │ │ │ │ ├── pace-theme-barber-shop.css │ │ │ │ │ ├── pace-theme-big-counter.css │ │ │ │ │ ├── pace-theme-bounce.css │ │ │ │ │ ├── pace-theme-center-atom.css │ │ │ │ │ ├── pace-theme-center-circle.css │ │ │ │ │ ├── pace-theme-center-radar.css │ │ │ │ │ ├── pace-theme-center-simple.css │ │ │ │ │ ├── pace-theme-corner-indicator.css │ │ │ │ │ ├── pace-theme-fill-left.css │ │ │ │ │ ├── pace-theme-flash.css │ │ │ │ │ ├── pace-theme-flat-top.css │ │ │ │ │ ├── pace-theme-loading-bar.css │ │ │ │ │ ├── pace-theme-mac-osx.css │ │ │ │ │ ├── pace-theme-material.css │ │ │ │ │ └── pace-theme-minimal.css │ │ │ ├── popper │ │ │ │ ├── esm │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js.map │ │ │ │ ├── popper-utils.js │ │ │ │ ├── popper-utils.js.map │ │ │ │ ├── popper-utils.min.js │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ ├── popper.js │ │ │ │ ├── popper.js.map │ │ │ │ ├── popper.min.js │ │ │ │ ├── popper.min.js.map │ │ │ │ └── umd │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper-utils.js.map │ │ │ │ │ ├── popper-utils.min.js │ │ │ │ │ ├── popper-utils.min.js.map │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.js.map │ │ │ │ │ ├── popper.min.js │ │ │ │ │ ├── popper.min.js.map │ │ │ │ │ └── poppper.js.flow │ │ │ ├── raphael │ │ │ │ ├── .eslintrc.js │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── dev │ │ │ │ │ ├── banner.txt │ │ │ │ │ ├── raphael.amd.js │ │ │ │ │ ├── raphael.core.js │ │ │ │ │ ├── raphael.svg.js │ │ │ │ │ ├── raphael.vml.js │ │ │ │ │ ├── raphaelTest.html │ │ │ │ │ └── test │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── svg │ │ │ │ │ │ └── dom.js │ │ │ │ │ │ └── vml │ │ │ │ │ │ └── dom.js │ │ │ │ ├── history.md │ │ │ │ ├── license.txt │ │ │ │ ├── package.json │ │ │ │ ├── raphael.js │ │ │ │ ├── raphael.min.js │ │ │ │ ├── raphael.no-deps.js │ │ │ │ ├── raphael.no-deps.min.js │ │ │ │ └── webpack.config.js │ │ │ ├── select2 │ │ │ │ ├── css │ │ │ │ │ ├── select2.css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── build.txt │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ ├── select2.js │ │ │ │ │ └── select2.min.js │ │ │ ├── sparklines │ │ │ │ └── sparkline.js │ │ │ ├── summernote │ │ │ │ ├── font │ │ │ │ │ ├── summernote.eot │ │ │ │ │ ├── summernote.ttf │ │ │ │ │ └── summernote.woff │ │ │ │ ├── lang │ │ │ │ │ ├── summernote-ar-AR.js │ │ │ │ │ ├── summernote-ar-AR.min.js │ │ │ │ │ ├── summernote-bg-BG.js │ │ │ │ │ ├── summernote-bg-BG.min.js │ │ │ │ │ ├── summernote-ca-ES.js │ │ │ │ │ ├── summernote-ca-ES.min.js │ │ │ │ │ ├── summernote-cs-CZ.js │ │ │ │ │ ├── summernote-cs-CZ.min.js │ │ │ │ │ ├── summernote-da-DK.js │ │ │ │ │ ├── summernote-da-DK.min.js │ │ │ │ │ ├── summernote-de-DE.js │ │ │ │ │ ├── summernote-de-DE.min.js │ │ │ │ │ ├── summernote-el-GR.js │ │ │ │ │ ├── summernote-el-GR.min.js │ │ │ │ │ ├── summernote-es-ES.js │ │ │ │ │ ├── summernote-es-ES.min.js │ │ │ │ │ ├── summernote-es-EU.js │ │ │ │ │ ├── summernote-es-EU.min.js │ │ │ │ │ ├── summernote-fa-IR.js │ │ │ │ │ ├── summernote-fa-IR.min.js │ │ │ │ │ ├── summernote-fi-FI.js │ │ │ │ │ ├── summernote-fi-FI.min.js │ │ │ │ │ ├── summernote-fr-FR.js │ │ │ │ │ ├── summernote-fr-FR.min.js │ │ │ │ │ ├── summernote-gl-ES.js │ │ │ │ │ ├── summernote-gl-ES.min.js │ │ │ │ │ ├── summernote-he-IL.js │ │ │ │ │ ├── summernote-he-IL.min.js │ │ │ │ │ ├── summernote-hr-HR.js │ │ │ │ │ ├── summernote-hr-HR.min.js │ │ │ │ │ ├── summernote-hu-HU.js │ │ │ │ │ ├── summernote-hu-HU.min.js │ │ │ │ │ ├── summernote-id-ID.js │ │ │ │ │ ├── summernote-id-ID.min.js │ │ │ │ │ ├── summernote-it-IT.js │ │ │ │ │ ├── summernote-it-IT.min.js │ │ │ │ │ ├── summernote-ja-JP.js │ │ │ │ │ ├── summernote-ja-JP.min.js │ │ │ │ │ ├── summernote-ko-KR.js │ │ │ │ │ ├── summernote-ko-KR.min.js │ │ │ │ │ ├── summernote-lt-LT.js │ │ │ │ │ ├── summernote-lt-LT.min.js │ │ │ │ │ ├── summernote-lt-LV.js │ │ │ │ │ ├── summernote-lt-LV.min.js │ │ │ │ │ ├── summernote-mn-MN.js │ │ │ │ │ ├── summernote-mn-MN.min.js │ │ │ │ │ ├── summernote-nb-NO.js │ │ │ │ │ ├── summernote-nb-NO.min.js │ │ │ │ │ ├── summernote-nl-NL.js │ │ │ │ │ ├── summernote-nl-NL.min.js │ │ │ │ │ ├── summernote-pl-PL.js │ │ │ │ │ ├── summernote-pl-PL.min.js │ │ │ │ │ ├── summernote-pt-BR.js │ │ │ │ │ ├── summernote-pt-BR.min.js │ │ │ │ │ ├── summernote-pt-PT.js │ │ │ │ │ ├── summernote-pt-PT.min.js │ │ │ │ │ ├── summernote-ro-RO.js │ │ │ │ │ ├── summernote-ro-RO.min.js │ │ │ │ │ ├── summernote-ru-RU.js │ │ │ │ │ ├── summernote-ru-RU.min.js │ │ │ │ │ ├── summernote-sk-SK.js │ │ │ │ │ ├── summernote-sk-SK.min.js │ │ │ │ │ ├── summernote-sl-SI.js │ │ │ │ │ ├── summernote-sl-SI.min.js │ │ │ │ │ ├── summernote-sr-RS-Latin.js │ │ │ │ │ ├── summernote-sr-RS-Latin.min.js │ │ │ │ │ ├── summernote-sr-RS.js │ │ │ │ │ ├── summernote-sr-RS.min.js │ │ │ │ │ ├── summernote-sv-SE.js │ │ │ │ │ ├── summernote-sv-SE.min.js │ │ │ │ │ ├── summernote-ta-IN.js │ │ │ │ │ ├── summernote-ta-IN.min.js │ │ │ │ │ ├── summernote-th-TH.js │ │ │ │ │ ├── summernote-th-TH.min.js │ │ │ │ │ ├── summernote-tr-TR.js │ │ │ │ │ ├── summernote-tr-TR.min.js │ │ │ │ │ ├── summernote-uk-UA.js │ │ │ │ │ ├── summernote-uk-UA.min.js │ │ │ │ │ ├── summernote-uz-UZ.js │ │ │ │ │ ├── summernote-uz-UZ.min.js │ │ │ │ │ ├── summernote-vi-VN.js │ │ │ │ │ ├── summernote-vi-VN.min.js │ │ │ │ │ ├── summernote-zh-CN.js │ │ │ │ │ ├── summernote-zh-CN.min.js │ │ │ │ │ ├── summernote-zh-TW.js │ │ │ │ │ └── summernote-zh-TW.min.js │ │ │ │ ├── summernote-bs4.css │ │ │ │ ├── summernote-bs4.js │ │ │ │ ├── summernote-bs4.js.map │ │ │ │ ├── summernote-bs4.min.js │ │ │ │ ├── summernote-lite.css │ │ │ │ ├── summernote-lite.js │ │ │ │ ├── summernote-lite.js.map │ │ │ │ ├── summernote-lite.min.js │ │ │ │ ├── summernote.css │ │ │ │ ├── summernote.js │ │ │ │ ├── summernote.js.map │ │ │ │ └── summernote.min.js │ │ │ ├── sweetalert2 │ │ │ │ ├── sweetalert2.all.js │ │ │ │ ├── sweetalert2.all.min.js │ │ │ │ ├── sweetalert2.css │ │ │ │ ├── sweetalert2.js │ │ │ │ ├── sweetalert2.min.css │ │ │ │ └── sweetalert2.min.js │ │ │ ├── tempusdominus-bootstrap-4 │ │ │ │ ├── css │ │ │ │ │ ├── tempusdominus-bootstrap-4.css │ │ │ │ │ └── tempusdominus-bootstrap-4.min.css │ │ │ │ └── js │ │ │ │ │ ├── tempusdominus-bootstrap-4.js │ │ │ │ │ └── tempusdominus-bootstrap-4.min.js │ │ │ └── toastr │ │ │ │ ├── toastr.css │ │ │ │ ├── toastr.js.map │ │ │ │ ├── toastr.min.css │ │ │ │ └── toastr.min.js │ │ └── vendor │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── fontawesome-free │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── jquery-easing │ │ │ ├── jquery.easing.compatibility.js │ │ │ ├── jquery.easing.js │ │ │ └── jquery.easing.min.js │ │ │ ├── jquery │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ │ │ └── select2 │ │ │ ├── Gruntfile.js │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── docs │ │ │ ├── announcements-4.0.html │ │ │ ├── community.html │ │ │ ├── examples.html │ │ │ ├── index.html │ │ │ ├── options-old.html │ │ │ └── options.html │ │ │ ├── package.json │ │ │ ├── src │ │ │ └── js │ │ │ │ ├── banner.end.js │ │ │ │ ├── banner.start.js │ │ │ │ ├── jquery.mousewheel.shim.js │ │ │ │ ├── jquery.select2.js │ │ │ │ ├── jquery.shim.js │ │ │ │ ├── select2 │ │ │ │ ├── compat │ │ │ │ │ ├── containerCss.js │ │ │ │ │ ├── dropdownCss.js │ │ │ │ │ ├── initSelection.js │ │ │ │ │ ├── inputData.js │ │ │ │ │ ├── matcher.js │ │ │ │ │ ├── query.js │ │ │ │ │ └── utils.js │ │ │ │ ├── core.js │ │ │ │ ├── data │ │ │ │ │ ├── ajax.js │ │ │ │ │ ├── array.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── maximumInputLength.js │ │ │ │ │ ├── maximumSelectionLength.js │ │ │ │ │ ├── minimumInputLength.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── tags.js │ │ │ │ │ └── tokenizer.js │ │ │ │ ├── defaults.js │ │ │ │ ├── diacritics.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown │ │ │ │ │ ├── attachBody.js │ │ │ │ │ ├── attachContainer.js │ │ │ │ │ ├── closeOnSelect.js │ │ │ │ │ ├── hidePlaceholder.js │ │ │ │ │ ├── infiniteScroll.js │ │ │ │ │ ├── minimumResultsForSearch.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── selectOnClose.js │ │ │ │ │ └── stopPropagation.js │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ ├── keys.js │ │ │ │ ├── options.js │ │ │ │ ├── results.js │ │ │ │ ├── selection │ │ │ │ │ ├── allowClear.js │ │ │ │ │ ├── base.js │ │ │ │ │ ├── clickMask.js │ │ │ │ │ ├── eventRelay.js │ │ │ │ │ ├── multiple.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ ├── search.js │ │ │ │ │ ├── single.js │ │ │ │ │ └── stopPropagation.js │ │ │ │ ├── translation.js │ │ │ │ └── utils.js │ │ │ │ ├── wrapper.end.js │ │ │ │ └── wrapper.start.js │ │ │ └── tests │ │ │ ├── a11y │ │ │ ├── search-tests.js │ │ │ └── selection-tests.js │ │ │ ├── data │ │ │ ├── array-tests.js │ │ │ ├── base-tests.js │ │ │ ├── inputData-tests.js │ │ │ ├── maximumInputLength-tests.js │ │ │ ├── maximumSelectionLength-tests.js │ │ │ ├── minimumInputLength-tests.js │ │ │ ├── select-tests.js │ │ │ ├── tags-tests.js │ │ │ └── tokenizer-tests.js │ │ │ ├── dropdown │ │ │ ├── dropdownCss-tests.js │ │ │ ├── positioning-tests.js │ │ │ ├── selectOnClose-tests.js │ │ │ └── stopPropagation-tests.js │ │ │ ├── helpers.js │ │ │ ├── integration-jq1.html │ │ │ ├── integration-jq2.html │ │ │ ├── integration-jq3.html │ │ │ ├── integration │ │ │ ├── dom-changes.js │ │ │ ├── jquery-calls.js │ │ │ └── select2-methods.js │ │ │ ├── options │ │ │ ├── ajax-tests.js │ │ │ ├── data-tests.js │ │ │ ├── deprecated-tests.js │ │ │ ├── translation-tests.js │ │ │ └── width-tests.js │ │ │ ├── results │ │ │ └── focusing-tests.js │ │ │ ├── selection │ │ │ ├── allowClear-tests.js │ │ │ ├── containerCss-tests.js │ │ │ ├── multiple-tests.js │ │ │ ├── placeholder-tests.js │ │ │ ├── search-tests.js │ │ │ ├── single-tests.js │ │ │ └── stopPropagation-tests.js │ │ │ ├── unit-jq1.html │ │ │ ├── unit-jq2.html │ │ │ ├── unit-jq3.html │ │ │ ├── utils │ │ │ ├── decorator-tests.js │ │ │ └── escapeMarkup-tests.js │ │ │ └── vendor │ │ │ ├── jquery-1.7.2.js │ │ │ ├── jquery-2.2.4.js │ │ │ ├── jquery-3.4.1.js │ │ │ ├── qunit-1.23.1.css │ │ │ └── qunit-1.23.1.js │ ├── templates │ │ ├── base │ │ │ ├── change_password.html │ │ │ ├── company_form.html │ │ │ ├── dashboard.html │ │ │ ├── delete.html │ │ │ ├── detail.html │ │ │ ├── detail_body.html │ │ │ ├── erp_footer.html │ │ │ ├── footer_total.html │ │ │ ├── form.html │ │ │ ├── formset_body.html │ │ │ ├── header_botons.html │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── list.html │ │ │ ├── navbar.html │ │ │ ├── note_list.html │ │ │ ├── ok.html │ │ │ ├── plugin.html │ │ │ ├── sidebar.html │ │ │ └── time_line.html │ │ ├── blog │ │ │ ├── blog.html │ │ │ └── post.html │ │ ├── datepicker_plus │ │ │ └── date-picker.html │ │ ├── home.html │ │ ├── login.html │ │ ├── shop │ │ │ ├── product.html │ │ │ └── shop.html │ │ └── usercustom │ │ │ ├── login.html │ │ │ ├── logoutmodal.html │ │ │ ├── password_change_form.html │ │ │ ├── password_reset_form.html │ │ │ ├── profile.html │ │ │ └── signup.html │ ├── templatetags │ │ ├── __init__.py │ │ └── erp_tags.py │ ├── tests.py │ ├── tokens.py │ ├── urls │ │ ├── __init__.py │ │ ├── attribute.py │ │ ├── base.py │ │ ├── bi.py │ │ ├── channel.py │ │ ├── comment.py │ │ ├── company.py │ │ ├── country.py │ │ ├── cron.py │ │ ├── currency.py │ │ ├── email.py │ │ ├── event.py │ │ ├── faq.py │ │ ├── file.py │ │ ├── image.py │ │ ├── log.py │ │ ├── menu.py │ │ ├── message.py │ │ ├── meta.py │ │ ├── note.py │ │ ├── page.py │ │ ├── parameter.py │ │ ├── partner.py │ │ ├── plugin.py │ │ ├── post.py │ │ ├── product.py │ │ ├── product_brand.py │ │ ├── product_category.py │ │ ├── product_category_uom.py │ │ ├── product_webcategory.py │ │ ├── rest.py │ │ ├── sequence.py │ │ ├── shop.py │ │ ├── tag.py │ │ ├── tax.py │ │ ├── uom.py │ │ ├── usercustom.py │ │ ├── variant.py │ │ ├── wparameter.py │ │ └── wpayment.py │ └── views │ │ ├── __init__.py │ │ ├── activatelanguage.py │ │ ├── attribute.py │ │ ├── base_config.py │ │ ├── bi.py │ │ ├── blog.py │ │ ├── channel.py │ │ ├── comment.py │ │ ├── company.py │ │ ├── country.py │ │ ├── cron.py │ │ ├── currency.py │ │ ├── email.py │ │ ├── event.py │ │ ├── faq.py │ │ ├── file.py │ │ ├── home.py │ │ ├── image.py │ │ ├── log.py │ │ ├── menu.py │ │ ├── message.py │ │ ├── meta.py │ │ ├── note.py │ │ ├── other_views.py │ │ ├── page.py │ │ ├── parameter.py │ │ ├── partner.py │ │ ├── plugin.py │ │ ├── post.py │ │ ├── product.py │ │ ├── product_brand.py │ │ ├── product_category.py │ │ ├── product_category_uom.py │ │ ├── product_webcategory.py │ │ ├── rest.py │ │ ├── sequence.py │ │ ├── shop.py │ │ ├── tag.py │ │ ├── tax.py │ │ ├── uom.py │ │ ├── usercustom.py │ │ ├── variant.py │ │ ├── web_father.py │ │ ├── website_config.py │ │ ├── wparameter.py │ │ └── wpayment.py ├── home │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── info.json │ ├── models.py │ ├── models │ │ └── __init__.py │ ├── static │ │ ├── LICENSE │ │ ├── README.md │ │ ├── css │ │ │ └── agency.css │ │ ├── favicon.png │ │ ├── gulpfile.js │ │ ├── img │ │ │ ├── 174848.svg │ │ │ ├── 174851.svg │ │ │ ├── 174855.svg │ │ │ ├── 174857.svg │ │ │ ├── 174863.svg │ │ │ ├── 174876.svg │ │ │ ├── 174883.svg │ │ │ ├── _header-bg.png │ │ │ ├── about │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ └── 4.jpg │ │ │ ├── header-bg2.jpg │ │ │ ├── logos │ │ │ │ ├── creative-market.jpg │ │ │ │ ├── designmodo.jpg │ │ │ │ ├── envato.jpg │ │ │ │ ├── img-tools-1.png │ │ │ │ ├── img-tools-2.png │ │ │ │ ├── img-tools-3.png │ │ │ │ ├── img-tools-4.png │ │ │ │ └── themeforest.jpg │ │ │ ├── map-image.png │ │ │ ├── portfolio │ │ │ │ ├── 01-full.jpg │ │ │ │ ├── 01-thumbnail.jpg │ │ │ │ ├── 02-full.jpg │ │ │ │ ├── 02-thumbnail.jpg │ │ │ │ ├── 03-full.jpg │ │ │ │ ├── 03-thumbnail.jpg │ │ │ │ ├── 04-full.jpg │ │ │ │ ├── 04-thumbnail.jpg │ │ │ │ ├── 05-full.jpg │ │ │ │ ├── 05-thumbnail.jpg │ │ │ │ ├── 06-full.jpg │ │ │ │ └── 06-thumbnail.jpg │ │ │ ├── pyerp.png │ │ │ ├── team │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ └── marlon.jpg │ │ │ └── whatsapp-icon-square.svg │ │ ├── js │ │ │ ├── agency.js │ │ │ ├── agency.min.js │ │ │ ├── bootstrap-input-spinner.js │ │ │ ├── contact_me.js │ │ │ └── jqBootstrapValidation.js │ │ ├── mail │ │ │ └── contact_me.php │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── scss │ │ │ ├── agency.scss │ │ │ ├── base │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _page.scss │ │ │ │ └── _variables.scss │ │ │ ├── components │ │ │ │ ├── _buttons.scss │ │ │ │ └── _navbar.scss │ │ │ └── layout │ │ │ │ ├── _contact.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _masthead.scss │ │ │ │ ├── _portfolio.scss │ │ │ │ ├── _services.scss │ │ │ │ ├── _team.scss │ │ │ │ └── _timeline.scss │ │ └── vendor │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── fontawesome-free │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── brands.css │ │ │ │ ├── brands.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── fontawesome.min.css │ │ │ │ ├── regular.css │ │ │ │ ├── regular.min.css │ │ │ │ ├── solid.css │ │ │ │ ├── solid.min.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ ├── jquery-easing │ │ │ ├── jquery.easing.compatibility.js │ │ │ ├── jquery.easing.js │ │ │ └── jquery.easing.min.js │ │ │ └── jquery │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ ├── templates │ │ └── home │ │ │ ├── contact_mail_template.html │ │ │ ├── footer.html │ │ │ ├── head.html │ │ │ ├── home.html │ │ │ ├── index.html │ │ │ ├── license.html │ │ │ ├── menu.html │ │ │ ├── nav_bar.html │ │ │ └── under_construction.html │ ├── tests.py │ ├── urls.py │ └── views │ │ ├── __init__.py │ │ └── views.py ├── l10n_spain │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── icon.png │ ├── info.json │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── marketplace │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── info.json │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── purchase │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── PyPurchaseOrderState.json │ ├── forms.py │ ├── info.json │ ├── management │ │ └── commands │ │ │ └── init_purchase.py │ ├── models.py │ ├── reports │ │ ├── __init__.py │ │ └── purchaseorderpdf.py │ ├── signals.py │ ├── static │ │ ├── bootstrap-select-1.13.9.zip │ │ └── bootstrap-select-1.13.9 │ │ │ ├── .eslintignore │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── move.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-select.css │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ └── bootstrap-select.min.css │ │ │ └── js │ │ │ │ ├── bootstrap-select.js │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ ├── bootstrap-select.min.js.map │ │ │ │ └── i18n │ │ │ │ ├── defaults-am_ET.js │ │ │ │ ├── defaults-am_ET.js.map │ │ │ │ ├── defaults-am_ET.min.js │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ ├── defaults-ar_AR.js.map │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ ├── defaults-bg_BG.js.map │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ ├── defaults-cs_CZ.js.map │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ ├── defaults-da_DK.js │ │ │ │ ├── defaults-da_DK.js.map │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ ├── defaults-de_DE.js │ │ │ │ ├── defaults-de_DE.js.map │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ ├── defaults-en_US.js │ │ │ │ ├── defaults-en_US.js.map │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ ├── defaults-es_CL.js │ │ │ │ ├── defaults-es_CL.js.map │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ ├── defaults-es_ES.js │ │ │ │ ├── defaults-es_ES.js.map │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ ├── defaults-et_EE.js │ │ │ │ ├── defaults-et_EE.js.map │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ ├── defaults-eu.js │ │ │ │ ├── defaults-eu.js.map │ │ │ │ ├── defaults-eu.min.js │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ ├── defaults-fa_IR.js.map │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ ├── defaults-fi_FI.js.map │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ ├── defaults-fr_FR.js.map │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ ├── defaults-hr_HR.js │ │ │ │ ├── defaults-hr_HR.js.map │ │ │ │ ├── defaults-hr_HR.min.js │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ ├── defaults-hu_HU.js.map │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ ├── defaults-id_ID.js │ │ │ │ ├── defaults-id_ID.js.map │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ ├── defaults-it_IT.js │ │ │ │ ├── defaults-it_IT.js.map │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ ├── defaults-ja_JP.js.map │ │ │ │ ├── defaults-ja_JP.min.js │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ ├── defaults-kh_KM.js.map │ │ │ │ ├── defaults-kh_KM.min.js │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ ├── defaults-ko_KR.js.map │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ ├── defaults-lt_LT.js.map │ │ │ │ ├── defaults-lt_LT.min.js │ │ │ │ ├── defaults-lv_LV.js │ │ │ │ ├── defaults-lv_LV.js.map │ │ │ │ ├── defaults-lv_LV.min.js │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ ├── defaults-nb_NO.js.map │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ ├── defaults-nl_NL.js.map │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ ├── defaults-pl_PL.js.map │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ ├── defaults-pt_BR.js.map │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ ├── defaults-pt_PT.js.map │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ ├── defaults-ro_RO.js.map │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ ├── defaults-ru_RU.js.map │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ ├── defaults-sk_SK.js.map │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ ├── defaults-sl_SI.js.map │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ ├── defaults-sv_SE.js.map │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ ├── defaults-tr_TR.js.map │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ ├── defaults-ua_UA.js.map │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ ├── defaults-vi_VN.js.map │ │ │ │ ├── defaults-vi_VN.min.js │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ ├── defaults-zh_CN.js.map │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ ├── defaults-zh_TW.js.map │ │ │ │ └── defaults-zh_TW.min.js │ │ │ ├── docs │ │ │ ├── custom_theme │ │ │ │ ├── ajax │ │ │ │ │ └── libs │ │ │ │ │ │ └── highlight.js │ │ │ │ │ │ └── 9.15.6 │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── github.min.css │ │ │ │ │ │ └── js │ │ │ │ │ │ └── highlight.pack.js │ │ │ │ ├── css │ │ │ │ │ └── base.css │ │ │ │ ├── js │ │ │ │ │ └── base.js │ │ │ │ ├── main.html │ │ │ │ ├── nav.html │ │ │ │ └── toc.html │ │ │ ├── docs │ │ │ │ ├── css │ │ │ │ │ └── custom.css │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-select.css │ │ │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ │ │ └── bootstrap-select.min.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap-select.js │ │ │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ │ │ ├── bootstrap-select.min.js.map │ │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── defaults-am_ET.js │ │ │ │ │ │ ├── defaults-am_ET.js.map │ │ │ │ │ │ ├── defaults-am_ET.min.js │ │ │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ │ │ ├── defaults-ar_AR.js.map │ │ │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ │ │ ├── defaults-bg_BG.js.map │ │ │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ │ │ ├── defaults-cs_CZ.js.map │ │ │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ │ │ ├── defaults-da_DK.js │ │ │ │ │ │ ├── defaults-da_DK.js.map │ │ │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ │ │ ├── defaults-de_DE.js │ │ │ │ │ │ ├── defaults-de_DE.js.map │ │ │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ │ │ ├── defaults-en_US.js │ │ │ │ │ │ ├── defaults-en_US.js.map │ │ │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ │ │ ├── defaults-es_CL.js │ │ │ │ │ │ ├── defaults-es_CL.js.map │ │ │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ │ │ ├── defaults-es_ES.js │ │ │ │ │ │ ├── defaults-es_ES.js.map │ │ │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ │ │ ├── defaults-et_EE.js │ │ │ │ │ │ ├── defaults-et_EE.js.map │ │ │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ │ │ ├── defaults-eu.js │ │ │ │ │ │ ├── defaults-eu.js.map │ │ │ │ │ │ ├── defaults-eu.min.js │ │ │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ │ │ ├── defaults-fa_IR.js.map │ │ │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ │ │ ├── defaults-fi_FI.js.map │ │ │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ │ │ ├── defaults-fr_FR.js.map │ │ │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ │ │ ├── defaults-hr_HR.js │ │ │ │ │ │ ├── defaults-hr_HR.js.map │ │ │ │ │ │ ├── defaults-hr_HR.min.js │ │ │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ │ │ ├── defaults-hu_HU.js.map │ │ │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ │ │ ├── defaults-id_ID.js │ │ │ │ │ │ ├── defaults-id_ID.js.map │ │ │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ │ │ ├── defaults-it_IT.js │ │ │ │ │ │ ├── defaults-it_IT.js.map │ │ │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ │ │ ├── defaults-ja_JP.js.map │ │ │ │ │ │ ├── defaults-ja_JP.min.js │ │ │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ │ │ ├── defaults-kh_KM.js.map │ │ │ │ │ │ ├── defaults-kh_KM.min.js │ │ │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ │ │ ├── defaults-ko_KR.js.map │ │ │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ │ │ ├── defaults-lt_LT.js.map │ │ │ │ │ │ ├── defaults-lt_LT.min.js │ │ │ │ │ │ ├── defaults-lv_LV.js │ │ │ │ │ │ ├── defaults-lv_LV.js.map │ │ │ │ │ │ ├── defaults-lv_LV.min.js │ │ │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ │ │ ├── defaults-nb_NO.js.map │ │ │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ │ │ ├── defaults-nl_NL.js.map │ │ │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ │ │ ├── defaults-pl_PL.js.map │ │ │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ │ │ ├── defaults-pt_BR.js.map │ │ │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ │ │ ├── defaults-pt_PT.js.map │ │ │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ │ │ ├── defaults-ro_RO.js.map │ │ │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ │ │ ├── defaults-ru_RU.js.map │ │ │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ │ │ ├── defaults-sk_SK.js.map │ │ │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ │ │ ├── defaults-sl_SI.js.map │ │ │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ │ │ ├── defaults-sv_SE.js.map │ │ │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ │ │ ├── defaults-tr_TR.js.map │ │ │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ │ │ ├── defaults-ua_UA.js.map │ │ │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ │ │ ├── defaults-vi_VN.js.map │ │ │ │ │ │ ├── defaults-vi_VN.min.js │ │ │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ │ │ ├── defaults-zh_CN.js.map │ │ │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ │ │ ├── defaults-zh_TW.js.map │ │ │ │ │ │ └── defaults-zh_TW.min.js │ │ │ │ ├── examples.md │ │ │ │ ├── index.md │ │ │ │ ├── methods.md │ │ │ │ ├── options.md │ │ │ │ └── playground │ │ │ │ │ ├── 3 │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── plnkrOpener.js │ │ │ └── mkdocs.yml │ │ │ ├── js │ │ │ ├── .eslintrc.json │ │ │ ├── bootstrap-select.js │ │ │ ├── i18n │ │ │ │ ├── defaults-am_ET.js │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ ├── defaults-da_DK.js │ │ │ │ ├── defaults-de_DE.js │ │ │ │ ├── defaults-en_US.js │ │ │ │ ├── defaults-es_CL.js │ │ │ │ ├── defaults-es_ES.js │ │ │ │ ├── defaults-et_EE.js │ │ │ │ ├── defaults-eu.js │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ ├── defaults-hr_HR.js │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ ├── defaults-id_ID.js │ │ │ │ ├── defaults-it_IT.js │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ ├── defaults-lv_LV.js │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ └── defaults-zh_TW.js │ │ │ ├── umd-intro.js │ │ │ └── umd-outro.js │ │ │ ├── less │ │ │ ├── bootstrap-select.less │ │ │ └── variables.less │ │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ └── bootstrap-select.nuspec │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── sass │ │ │ ├── bootstrap-select.scss │ │ │ └── variables.scss │ │ │ └── tests │ │ │ ├── bootstrap3.html │ │ │ └── bootstrap4.html │ ├── templates │ │ └── purchase │ │ │ ├── delete.html │ │ │ ├── detail.html │ │ │ ├── form.html │ │ │ └── menu.html │ ├── tests.py │ ├── translation.py │ ├── urls.py │ └── views.py ├── run_server │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── info.json │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── sale │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── fixtures │ │ └── PySaleOrderState.json │ ├── forms.py │ ├── info.json │ ├── management │ │ └── commands │ │ │ └── init_sale.py │ ├── models.py │ ├── reports │ │ ├── __init__.py │ │ └── saleorderpdf.py │ ├── signals.py │ ├── static │ │ ├── bootstrap-select-1.13.9.zip │ │ └── bootstrap-select-1.13.9 │ │ │ ├── .eslintignore │ │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ └── move.yml │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-select.css │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ └── bootstrap-select.min.css │ │ │ └── js │ │ │ │ ├── bootstrap-select.js │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ ├── bootstrap-select.min.js.map │ │ │ │ └── i18n │ │ │ │ ├── defaults-am_ET.js │ │ │ │ ├── defaults-am_ET.js.map │ │ │ │ ├── defaults-am_ET.min.js │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ ├── defaults-ar_AR.js.map │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ ├── defaults-bg_BG.js.map │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ ├── defaults-cs_CZ.js.map │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ ├── defaults-da_DK.js │ │ │ │ ├── defaults-da_DK.js.map │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ ├── defaults-de_DE.js │ │ │ │ ├── defaults-de_DE.js.map │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ ├── defaults-en_US.js │ │ │ │ ├── defaults-en_US.js.map │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ ├── defaults-es_CL.js │ │ │ │ ├── defaults-es_CL.js.map │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ ├── defaults-es_ES.js │ │ │ │ ├── defaults-es_ES.js.map │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ ├── defaults-et_EE.js │ │ │ │ ├── defaults-et_EE.js.map │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ ├── defaults-eu.js │ │ │ │ ├── defaults-eu.js.map │ │ │ │ ├── defaults-eu.min.js │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ ├── defaults-fa_IR.js.map │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ ├── defaults-fi_FI.js.map │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ ├── defaults-fr_FR.js.map │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ ├── defaults-hr_HR.js │ │ │ │ ├── defaults-hr_HR.js.map │ │ │ │ ├── defaults-hr_HR.min.js │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ ├── defaults-hu_HU.js.map │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ ├── defaults-id_ID.js │ │ │ │ ├── defaults-id_ID.js.map │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ ├── defaults-it_IT.js │ │ │ │ ├── defaults-it_IT.js.map │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ ├── defaults-ja_JP.js.map │ │ │ │ ├── defaults-ja_JP.min.js │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ ├── defaults-kh_KM.js.map │ │ │ │ ├── defaults-kh_KM.min.js │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ ├── defaults-ko_KR.js.map │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ ├── defaults-lt_LT.js.map │ │ │ │ ├── defaults-lt_LT.min.js │ │ │ │ ├── defaults-lv_LV.js │ │ │ │ ├── defaults-lv_LV.js.map │ │ │ │ ├── defaults-lv_LV.min.js │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ ├── defaults-nb_NO.js.map │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ ├── defaults-nl_NL.js.map │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ ├── defaults-pl_PL.js.map │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ ├── defaults-pt_BR.js.map │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ ├── defaults-pt_PT.js.map │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ ├── defaults-ro_RO.js.map │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ ├── defaults-ru_RU.js.map │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ ├── defaults-sk_SK.js.map │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ ├── defaults-sl_SI.js.map │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ ├── defaults-sv_SE.js.map │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ ├── defaults-tr_TR.js.map │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ ├── defaults-ua_UA.js.map │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ ├── defaults-vi_VN.js.map │ │ │ │ ├── defaults-vi_VN.min.js │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ ├── defaults-zh_CN.js.map │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ ├── defaults-zh_TW.js.map │ │ │ │ └── defaults-zh_TW.min.js │ │ │ ├── docs │ │ │ ├── custom_theme │ │ │ │ ├── ajax │ │ │ │ │ └── libs │ │ │ │ │ │ └── highlight.js │ │ │ │ │ │ └── 9.15.6 │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── github.min.css │ │ │ │ │ │ └── js │ │ │ │ │ │ └── highlight.pack.js │ │ │ │ ├── css │ │ │ │ │ └── base.css │ │ │ │ ├── js │ │ │ │ │ └── base.js │ │ │ │ ├── main.html │ │ │ │ ├── nav.html │ │ │ │ └── toc.html │ │ │ ├── docs │ │ │ │ ├── css │ │ │ │ │ └── custom.css │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-select.css │ │ │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ │ │ └── bootstrap-select.min.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap-select.js │ │ │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ │ │ ├── bootstrap-select.min.js.map │ │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── defaults-am_ET.js │ │ │ │ │ │ ├── defaults-am_ET.js.map │ │ │ │ │ │ ├── defaults-am_ET.min.js │ │ │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ │ │ ├── defaults-ar_AR.js.map │ │ │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ │ │ ├── defaults-bg_BG.js.map │ │ │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ │ │ ├── defaults-cs_CZ.js.map │ │ │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ │ │ ├── defaults-da_DK.js │ │ │ │ │ │ ├── defaults-da_DK.js.map │ │ │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ │ │ ├── defaults-de_DE.js │ │ │ │ │ │ ├── defaults-de_DE.js.map │ │ │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ │ │ ├── defaults-en_US.js │ │ │ │ │ │ ├── defaults-en_US.js.map │ │ │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ │ │ ├── defaults-es_CL.js │ │ │ │ │ │ ├── defaults-es_CL.js.map │ │ │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ │ │ ├── defaults-es_ES.js │ │ │ │ │ │ ├── defaults-es_ES.js.map │ │ │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ │ │ ├── defaults-et_EE.js │ │ │ │ │ │ ├── defaults-et_EE.js.map │ │ │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ │ │ ├── defaults-eu.js │ │ │ │ │ │ ├── defaults-eu.js.map │ │ │ │ │ │ ├── defaults-eu.min.js │ │ │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ │ │ ├── defaults-fa_IR.js.map │ │ │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ │ │ ├── defaults-fi_FI.js.map │ │ │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ │ │ ├── defaults-fr_FR.js.map │ │ │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ │ │ ├── defaults-hr_HR.js │ │ │ │ │ │ ├── defaults-hr_HR.js.map │ │ │ │ │ │ ├── defaults-hr_HR.min.js │ │ │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ │ │ ├── defaults-hu_HU.js.map │ │ │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ │ │ ├── defaults-id_ID.js │ │ │ │ │ │ ├── defaults-id_ID.js.map │ │ │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ │ │ ├── defaults-it_IT.js │ │ │ │ │ │ ├── defaults-it_IT.js.map │ │ │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ │ │ ├── defaults-ja_JP.js.map │ │ │ │ │ │ ├── defaults-ja_JP.min.js │ │ │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ │ │ ├── defaults-kh_KM.js.map │ │ │ │ │ │ ├── defaults-kh_KM.min.js │ │ │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ │ │ ├── defaults-ko_KR.js.map │ │ │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ │ │ ├── defaults-lt_LT.js.map │ │ │ │ │ │ ├── defaults-lt_LT.min.js │ │ │ │ │ │ ├── defaults-lv_LV.js │ │ │ │ │ │ ├── defaults-lv_LV.js.map │ │ │ │ │ │ ├── defaults-lv_LV.min.js │ │ │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ │ │ ├── defaults-nb_NO.js.map │ │ │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ │ │ ├── defaults-nl_NL.js.map │ │ │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ │ │ ├── defaults-pl_PL.js.map │ │ │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ │ │ ├── defaults-pt_BR.js.map │ │ │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ │ │ ├── defaults-pt_PT.js.map │ │ │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ │ │ ├── defaults-ro_RO.js.map │ │ │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ │ │ ├── defaults-ru_RU.js.map │ │ │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ │ │ ├── defaults-sk_SK.js.map │ │ │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ │ │ ├── defaults-sl_SI.js.map │ │ │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ │ │ ├── defaults-sv_SE.js.map │ │ │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ │ │ ├── defaults-tr_TR.js.map │ │ │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ │ │ ├── defaults-ua_UA.js.map │ │ │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ │ │ ├── defaults-vi_VN.js.map │ │ │ │ │ │ ├── defaults-vi_VN.min.js │ │ │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ │ │ ├── defaults-zh_CN.js.map │ │ │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ │ │ ├── defaults-zh_TW.js.map │ │ │ │ │ │ └── defaults-zh_TW.min.js │ │ │ │ ├── examples.md │ │ │ │ ├── index.md │ │ │ │ ├── methods.md │ │ │ │ ├── options.md │ │ │ │ └── playground │ │ │ │ │ ├── 3 │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── plnkrOpener.js │ │ │ └── mkdocs.yml │ │ │ ├── js │ │ │ ├── .eslintrc.json │ │ │ ├── bootstrap-select.js │ │ │ ├── i18n │ │ │ │ ├── defaults-am_ET.js │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ ├── defaults-da_DK.js │ │ │ │ ├── defaults-de_DE.js │ │ │ │ ├── defaults-en_US.js │ │ │ │ ├── defaults-es_CL.js │ │ │ │ ├── defaults-es_ES.js │ │ │ │ ├── defaults-et_EE.js │ │ │ │ ├── defaults-eu.js │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ ├── defaults-hr_HR.js │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ ├── defaults-id_ID.js │ │ │ │ ├── defaults-it_IT.js │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ ├── defaults-lv_LV.js │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ └── defaults-zh_TW.js │ │ │ ├── umd-intro.js │ │ │ └── umd-outro.js │ │ │ ├── less │ │ │ ├── bootstrap-select.less │ │ │ └── variables.less │ │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ └── bootstrap-select.nuspec │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── sass │ │ │ ├── bootstrap-select.scss │ │ │ └── variables.scss │ │ │ └── tests │ │ │ ├── bootstrap3.html │ │ │ └── bootstrap4.html │ ├── templates │ │ └── sale │ │ │ ├── delete.html │ │ │ ├── detail.html │ │ │ ├── form.html │ │ │ └── menu.html │ ├── tests.py │ ├── translation.py │ ├── urls.py │ └── views.py └── stock │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── info.json │ ├── models.py │ ├── templates │ └── stock │ │ └── menu.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── docs ├── .DS_Store ├── 00 │ └── index.html ├── LICENSE ├── README.md ├── css │ ├── animate.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── custom.css │ ├── prettyPhoto.css │ ├── stroke.css │ └── style.css ├── favicon.png ├── fonts │ ├── Stroke-Gap-Icons.eot │ ├── Stroke-Gap-Icons.svg │ ├── Stroke-Gap-Icons.ttf │ ├── Stroke-Gap-Icons.woff │ ├── font-awesome-4.3.0 │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── lanenar_Lane.eot │ ├── lanenar_Lane.svg │ ├── lanenar_Lane.ttf │ └── lanenar_Lane.woff ├── index.html └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── custom.js │ ├── jquery.fitvids.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.prettyPhoto.js │ ├── main.js │ ├── retina.js │ ├── syntax-highlighter │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ └── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ └── wow.js ├── entrypoint.sh ├── index.html ├── locale └── es │ └── LC_MESSAGES │ └── django.po ├── manage.py ├── marketing ├── .DS_Store ├── PyERP logo 2.png ├── PyERP logo 23.png ├── box_pyerp.jpeg ├── box_pyerp.png ├── icon 2.png ├── logo │ ├── 1.jpeg │ ├── 10.jpeg │ ├── 11.jpeg │ ├── 12.jpeg │ ├── 13.jpeg │ ├── 14.jpeg │ ├── 15.jpeg │ ├── 16.jpeg │ ├── 17.jpeg │ ├── 18.jpeg │ ├── 19.jpeg │ ├── 2.jpeg │ ├── 20.jpeg │ ├── 3.jpeg │ ├── 4.jpeg │ ├── 5.jpeg │ ├── 6.jpeg │ ├── 7.jpeg │ ├── 8.jpeg │ └── 9.jpeg ├── marlon-falcon-youtube.png ├── pyerp-m.png ├── pyerp-m1.png ├── pyerp.png ├── screenshot_pyerp_1.png ├── screenshot_pyerp_2.jpg ├── screenshot_pyerp_3.png ├── screenshot_pyerp_4.png ├── screenshot_pyerp_5.png └── wallpapers │ ├── PYERP WALLPAPERS-01.jpg │ ├── PYERP WALLPAPERS-02.jpg │ ├── PYERP WALLPAPERS-03.jpg │ ├── PYERP WALLPAPERS-04.jpg │ ├── PYERP WALLPAPERS-05.jpg │ ├── PYERP WALLPAPERS-06.jpg │ ├── PYERP WALLPAPERS-07.jpg │ ├── PYERP WALLPAPERS-08.jpg │ ├── PYERP WALLPAPERS-09.jpg │ ├── mobile pyerp 1-01.jpg │ ├── mobile pyerp 1-02.jpg │ ├── mobile pyerp 1-03.jpg │ ├── mobile pyerp 1-04.jpg │ ├── mobile pyerp 1-05.jpg │ ├── mobile pyerp 2-01.jpg │ ├── mobile pyerp 2-02.jpg │ ├── mobile pyerp 2-03.jpg │ ├── mobile pyerp 2-04.jpg │ ├── wallpapers 1-01.jpg │ ├── wallpapers 2-01.jpg │ ├── wallpapers 3-01.jpg │ ├── wallpapers 4-01.jpg │ ├── wallpapers 5-01.jpg │ ├── wallpapers 6-01.jpg │ └── wallpapers-7.png ├── media ├── _header-bg.png ├── about │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── 4.jpg ├── avatar │ └── default_avatar.png ├── favicon.png ├── favicon_white.png ├── flag │ ├── en.png │ ├── es-ve.png │ └── es.png ├── header-bg2.jpg ├── logo │ ├── 1.png │ ├── 2.png │ ├── 3.jpg │ ├── 5.png │ ├── 7.png │ ├── default_logo.png │ └── pyerp_logo.png ├── logos │ ├── creative-market.jpg │ ├── designmodo.jpg │ ├── envato.jpg │ ├── img-tools-1.png │ ├── img-tools-2.png │ ├── img-tools-3.png │ ├── img-tools-4.png │ └── themeforest.jpg ├── map-image.png ├── partner │ └── default_partner.png ├── plugin │ ├── flow.png │ ├── l10n_chile.png │ ├── l10n_spain.png │ └── paypal.png ├── portfolio │ ├── 01-full.jpg │ ├── 01-thumbnail.jpg │ ├── 02-full.jpg │ ├── 02-thumbnail.jpg │ ├── 03-full.jpg │ ├── 03-thumbnail.jpg │ ├── 04-full.jpg │ ├── 04-thumbnail.jpg │ ├── 05-full.jpg │ ├── 05-thumbnail.jpg │ ├── 06-full.jpg │ └── 06-thumbnail.jpg ├── product │ └── default_product.png ├── pyerp-marketing │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── PyERP logo 23.png │ ├── PyERP_logo_2.png │ ├── icon 2.png │ ├── pyerp-m.png │ └── pyerp.png ├── pyerp.png └── team │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── marlon.jpg ├── pyerp ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/LICENSE -------------------------------------------------------------------------------- /Py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/Py.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/README.md -------------------------------------------------------------------------------- /apps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/.DS_Store -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/account/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/__init__.py -------------------------------------------------------------------------------- /apps/account/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/admin.py -------------------------------------------------------------------------------- /apps/account/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/apps.py -------------------------------------------------------------------------------- /apps/account/fixtures/PyInvoiceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/fixtures/PyInvoiceState.json -------------------------------------------------------------------------------- /apps/account/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/forms/__init__.py -------------------------------------------------------------------------------- /apps/account/forms/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/forms/invoice.py -------------------------------------------------------------------------------- /apps/account/forms/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/forms/move.py -------------------------------------------------------------------------------- /apps/account/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/info.json -------------------------------------------------------------------------------- /apps/account/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/models/__init__.py -------------------------------------------------------------------------------- /apps/account/models/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/models/invoice.py -------------------------------------------------------------------------------- /apps/account/models/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/models/journal.py -------------------------------------------------------------------------------- /apps/account/models/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/models/move.py -------------------------------------------------------------------------------- /apps/account/models/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/models/plan.py -------------------------------------------------------------------------------- /apps/account/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/account/reports/invoicepdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/reports/invoicepdf.py -------------------------------------------------------------------------------- /apps/account/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/signals.py -------------------------------------------------------------------------------- /apps/account/templates/account/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/templates/account/delete.html -------------------------------------------------------------------------------- /apps/account/templates/account/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/templates/account/menu.html -------------------------------------------------------------------------------- /apps/account/templates/invoice/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/templates/invoice/detail.html -------------------------------------------------------------------------------- /apps/account/templates/invoice/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/templates/invoice/form.html -------------------------------------------------------------------------------- /apps/account/templates/move/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/templates/move/detail.html -------------------------------------------------------------------------------- /apps/account/templates/move/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/templates/move/form.html -------------------------------------------------------------------------------- /apps/account/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/tests.py -------------------------------------------------------------------------------- /apps/account/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/translation.py -------------------------------------------------------------------------------- /apps/account/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/urls/__init__.py -------------------------------------------------------------------------------- /apps/account/urls/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/urls/invoice.py -------------------------------------------------------------------------------- /apps/account/urls/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/urls/journal.py -------------------------------------------------------------------------------- /apps/account/urls/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/urls/move.py -------------------------------------------------------------------------------- /apps/account/urls/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/urls/plan.py -------------------------------------------------------------------------------- /apps/account/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/views/__init__.py -------------------------------------------------------------------------------- /apps/account/views/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/views/invoice.py -------------------------------------------------------------------------------- /apps/account/views/journal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/views/journal.py -------------------------------------------------------------------------------- /apps/account/views/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/views/move.py -------------------------------------------------------------------------------- /apps/account/views/plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/account/views/plan.py -------------------------------------------------------------------------------- /apps/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/base/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/admin.py -------------------------------------------------------------------------------- /apps/base/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/apps.py -------------------------------------------------------------------------------- /apps/base/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/common.py -------------------------------------------------------------------------------- /apps/base/data/PyBi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/data/PyBi.csv -------------------------------------------------------------------------------- /apps/base/data/PyMeta.csv: -------------------------------------------------------------------------------- 1 | id,title,content 2 | 1,author,PyERP 3 | 2,description,Web 4 | -------------------------------------------------------------------------------- /apps/base/data/PyParameter.csv: -------------------------------------------------------------------------------- 1 | id,name,value 2 | 1,register_user,False 3 | -------------------------------------------------------------------------------- /apps/base/data/PyPartner.csv: -------------------------------------------------------------------------------- 1 | name,email,phone 2 | Marlon Falcón Hernández,mfalcon@ynext.cl,+56942994534 3 | -------------------------------------------------------------------------------- /apps/base/data/PyUser.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/data/PyUser.csv -------------------------------------------------------------------------------- /apps/base/data/PyWParameter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/data/PyWParameter.csv -------------------------------------------------------------------------------- /apps/base/demo/PyMeta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/demo/PyMeta.csv -------------------------------------------------------------------------------- /apps/base/fixtures/PyCountry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/fixtures/PyCountry.json -------------------------------------------------------------------------------- /apps/base/fixtures/PyCurrency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/fixtures/PyCurrency.json -------------------------------------------------------------------------------- /apps/base/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/forms/__init__.py -------------------------------------------------------------------------------- /apps/base/forms/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/forms/company.py -------------------------------------------------------------------------------- /apps/base/forms/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/forms/partner.py -------------------------------------------------------------------------------- /apps/base/forms/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/forms/product.py -------------------------------------------------------------------------------- /apps/base/home_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/home_urls.py -------------------------------------------------------------------------------- /apps/base/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /apps/base/management/commands/init_pyerp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/management/commands/init_pyerp.py -------------------------------------------------------------------------------- /apps/base/management/commands/install_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/management/commands/install_plugin.py -------------------------------------------------------------------------------- /apps/base/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/__init__.py -------------------------------------------------------------------------------- /apps/base/models/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/attribute.py -------------------------------------------------------------------------------- /apps/base/models/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/base_config.py -------------------------------------------------------------------------------- /apps/base/models/bi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/bi.py -------------------------------------------------------------------------------- /apps/base/models/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/channel.py -------------------------------------------------------------------------------- /apps/base/models/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/comment.py -------------------------------------------------------------------------------- /apps/base/models/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/company.py -------------------------------------------------------------------------------- /apps/base/models/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/country.py -------------------------------------------------------------------------------- /apps/base/models/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/cron.py -------------------------------------------------------------------------------- /apps/base/models/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/currency.py -------------------------------------------------------------------------------- /apps/base/models/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/email.py -------------------------------------------------------------------------------- /apps/base/models/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/event.py -------------------------------------------------------------------------------- /apps/base/models/faq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/faq.py -------------------------------------------------------------------------------- /apps/base/models/father.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/father.py -------------------------------------------------------------------------------- /apps/base/models/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/file.py -------------------------------------------------------------------------------- /apps/base/models/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/image.py -------------------------------------------------------------------------------- /apps/base/models/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/log.py -------------------------------------------------------------------------------- /apps/base/models/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/menu.py -------------------------------------------------------------------------------- /apps/base/models/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/message.py -------------------------------------------------------------------------------- /apps/base/models/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/meta.py -------------------------------------------------------------------------------- /apps/base/models/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/note.py -------------------------------------------------------------------------------- /apps/base/models/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/page.py -------------------------------------------------------------------------------- /apps/base/models/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/parameter.py -------------------------------------------------------------------------------- /apps/base/models/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/partner.py -------------------------------------------------------------------------------- /apps/base/models/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/plugin.py -------------------------------------------------------------------------------- /apps/base/models/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/post.py -------------------------------------------------------------------------------- /apps/base/models/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/product.py -------------------------------------------------------------------------------- /apps/base/models/product_brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/product_brand.py -------------------------------------------------------------------------------- /apps/base/models/product_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/product_category.py -------------------------------------------------------------------------------- /apps/base/models/product_category_uom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/product_category_uom.py -------------------------------------------------------------------------------- /apps/base/models/product_webcategory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/product_webcategory.py -------------------------------------------------------------------------------- /apps/base/models/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/sequence.py -------------------------------------------------------------------------------- /apps/base/models/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/tag.py -------------------------------------------------------------------------------- /apps/base/models/tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/tax.py -------------------------------------------------------------------------------- /apps/base/models/uom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/uom.py -------------------------------------------------------------------------------- /apps/base/models/usercustom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/usercustom.py -------------------------------------------------------------------------------- /apps/base/models/variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/variant.py -------------------------------------------------------------------------------- /apps/base/models/website_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/website_config.py -------------------------------------------------------------------------------- /apps/base/models/wparameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/wparameter.py -------------------------------------------------------------------------------- /apps/base/models/wpayment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/models/wpayment.py -------------------------------------------------------------------------------- /apps/base/rename_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/rename_image.py -------------------------------------------------------------------------------- /apps/base/static/css/company-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/company-form.css -------------------------------------------------------------------------------- /apps/base/static/css/cropper copy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/cropper copy.css -------------------------------------------------------------------------------- /apps/base/static/css/cropper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/cropper.css -------------------------------------------------------------------------------- /apps/base/static/css/cropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/cropper.min.css -------------------------------------------------------------------------------- /apps/base/static/css/formset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/formset.css -------------------------------------------------------------------------------- /apps/base/static/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/magnific-popup.css -------------------------------------------------------------------------------- /apps/base/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/main.css -------------------------------------------------------------------------------- /apps/base/static/css/styles-home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/styles-home.css -------------------------------------------------------------------------------- /apps/base/static/css/swiper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/css/swiper.css -------------------------------------------------------------------------------- /apps/base/static/dist/css/adminlte.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/css/adminlte.css -------------------------------------------------------------------------------- /apps/base/static/dist/css/adminlte.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/css/adminlte.css.map -------------------------------------------------------------------------------- /apps/base/static/dist/css/adminlte.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/css/adminlte.min.css -------------------------------------------------------------------------------- /apps/base/static/dist/css/adminlte.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/css/adminlte.min.css.map -------------------------------------------------------------------------------- /apps/base/static/dist/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/favicon.png -------------------------------------------------------------------------------- /apps/base/static/dist/favicon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/favicon_white.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/AdminLTELogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/AdminLTELogo.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/avatar.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/avatar04.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/avatar2.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/avatar3.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/avatar5.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/credit/visa.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/default-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/default-150x150.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/icons.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/photo1.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/photo2.png -------------------------------------------------------------------------------- /apps/base/static/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/photo3.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/photo4.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/prod-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/prod-1.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/prod-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/prod-2.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/prod-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/prod-3.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/prod-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/prod-4.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/prod-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/prod-5.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /apps/base/static/dist/js/adminlte.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/js/adminlte.js -------------------------------------------------------------------------------- /apps/base/static/dist/js/adminlte.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/js/adminlte.js.map -------------------------------------------------------------------------------- /apps/base/static/dist/js/adminlte.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/js/adminlte.min.js -------------------------------------------------------------------------------- /apps/base/static/dist/js/adminlte.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/js/adminlte.min.js.map -------------------------------------------------------------------------------- /apps/base/static/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/js/demo.js -------------------------------------------------------------------------------- /apps/base/static/dist/js/pages/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/js/pages/dashboard.js -------------------------------------------------------------------------------- /apps/base/static/dist/js/pages/dashboard2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/js/pages/dashboard2.js -------------------------------------------------------------------------------- /apps/base/static/dist/js/pages/dashboard3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/dist/js/pages/dashboard3.js -------------------------------------------------------------------------------- /apps/base/static/home/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/css/bootstrap.css -------------------------------------------------------------------------------- /apps/base/static/home/css/default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/css/default.min.css -------------------------------------------------------------------------------- /apps/base/static/home/css/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/css/fontawesome-all.css -------------------------------------------------------------------------------- /apps/base/static/home/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/css/magnific-popup.css -------------------------------------------------------------------------------- /apps/base/static/home/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/css/styles.css -------------------------------------------------------------------------------- /apps/base/static/home/css/swiper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/css/swiper.css -------------------------------------------------------------------------------- /apps/base/static/home/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/favicon.png -------------------------------------------------------------------------------- /apps/base/static/home/images/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/down-arrow.png -------------------------------------------------------------------------------- /apps/base/static/home/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/logo.svg -------------------------------------------------------------------------------- /apps/base/static/home/images/team-member-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/team-member-1.svg -------------------------------------------------------------------------------- /apps/base/static/home/images/team-member-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/team-member-2.svg -------------------------------------------------------------------------------- /apps/base/static/home/images/team-member-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/team-member-3.svg -------------------------------------------------------------------------------- /apps/base/static/home/images/team-member-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/team-member-4.svg -------------------------------------------------------------------------------- /apps/base/static/home/images/testimonial-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/testimonial-1.svg -------------------------------------------------------------------------------- /apps/base/static/home/images/testimonial-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/testimonial-2.svg -------------------------------------------------------------------------------- /apps/base/static/home/images/testimonial-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/testimonial-3.svg -------------------------------------------------------------------------------- /apps/base/static/home/images/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/up-arrow.png -------------------------------------------------------------------------------- /apps/base/static/home/images/video-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/images/video-frame.svg -------------------------------------------------------------------------------- /apps/base/static/home/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/img/logo.png -------------------------------------------------------------------------------- /apps/base/static/home/img/marlon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/img/marlon.jpg -------------------------------------------------------------------------------- /apps/base/static/home/img/pyerp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/img/pyerp.png -------------------------------------------------------------------------------- /apps/base/static/home/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/js/bootstrap.min.js -------------------------------------------------------------------------------- /apps/base/static/home/js/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/js/highlight.min.js -------------------------------------------------------------------------------- /apps/base/static/home/js/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/js/jquery.easing.min.js -------------------------------------------------------------------------------- /apps/base/static/home/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/js/jquery.min.js -------------------------------------------------------------------------------- /apps/base/static/home/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/js/popper.min.js -------------------------------------------------------------------------------- /apps/base/static/home/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/js/scripts.js -------------------------------------------------------------------------------- /apps/base/static/home/js/swiper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/js/swiper.min.js -------------------------------------------------------------------------------- /apps/base/static/home/js/validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/js/validator.min.js -------------------------------------------------------------------------------- /apps/base/static/home/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /apps/base/static/home/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /apps/base/static/home/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/home/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /apps/base/static/img/174848.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/img/174848.svg -------------------------------------------------------------------------------- /apps/base/static/img/174851.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/img/174851.svg -------------------------------------------------------------------------------- /apps/base/static/img/174855.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/img/174855.svg -------------------------------------------------------------------------------- /apps/base/static/img/174857.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/img/174857.svg -------------------------------------------------------------------------------- /apps/base/static/img/174863.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/img/174863.svg -------------------------------------------------------------------------------- /apps/base/static/img/174876.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/img/174876.svg -------------------------------------------------------------------------------- /apps/base/static/img/174883.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/img/174883.svg -------------------------------------------------------------------------------- /apps/base/static/js/agency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/agency.js -------------------------------------------------------------------------------- /apps/base/static/js/agency.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/agency.min.js -------------------------------------------------------------------------------- /apps/base/static/js/company-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/company-form.js -------------------------------------------------------------------------------- /apps/base/static/js/contact_me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/contact_me.js -------------------------------------------------------------------------------- /apps/base/static/js/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/cropper.js -------------------------------------------------------------------------------- /apps/base/static/js/cropper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/cropper.min.js -------------------------------------------------------------------------------- /apps/base/static/js/cropper1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/cropper1.js -------------------------------------------------------------------------------- /apps/base/static/js/custom_formset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/custom_formset.js -------------------------------------------------------------------------------- /apps/base/static/js/jqBootstrapValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/jqBootstrapValidation.js -------------------------------------------------------------------------------- /apps/base/static/js/test-color-widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/js/test-color-widgets.js -------------------------------------------------------------------------------- /apps/base/static/plugins/chart.js/Chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/chart.js/Chart.css -------------------------------------------------------------------------------- /apps/base/static/plugins/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/chart.js/Chart.js -------------------------------------------------------------------------------- /apps/base/static/plugins/chart.js/Chart.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/chart.js/Chart.min.css -------------------------------------------------------------------------------- /apps/base/static/plugins/chart.js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/chart.js/Chart.min.js -------------------------------------------------------------------------------- /apps/base/static/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/base/static/plugins/fastclick/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/fastclick/fastclick.js -------------------------------------------------------------------------------- /apps/base/static/plugins/flot-old/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/flot-old/excanvas.js -------------------------------------------------------------------------------- /apps/base/static/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /apps/base/static/plugins/fullcalendar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/fullcalendar/README.md -------------------------------------------------------------------------------- /apps/base/static/plugins/fullcalendar/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/fullcalendar/main.css -------------------------------------------------------------------------------- /apps/base/static/plugins/fullcalendar/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/fullcalendar/main.d.ts -------------------------------------------------------------------------------- /apps/base/static/plugins/fullcalendar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/fullcalendar/main.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery-ui/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery-ui/AUTHORS.txt -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery-ui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery-ui/LICENSE.txt -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery-ui/README.md: -------------------------------------------------------------------------------- 1 | # jquery-ui-dist -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery-ui/index.html -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery-ui/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery-ui/jquery-ui.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery-ui/package.json -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery/core.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery/jquery.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery/jquery.min.map -------------------------------------------------------------------------------- /apps/base/static/plugins/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jquery/jquery.slim.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jqvmap/jquery.vmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jqvmap/jquery.vmap.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jqvmap/jqvmap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jqvmap/jqvmap.css -------------------------------------------------------------------------------- /apps/base/static/plugins/jqvmap/jqvmap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jqvmap/jqvmap.min.css -------------------------------------------------------------------------------- /apps/base/static/plugins/jsgrid/demos/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jsgrid/demos/db.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jsgrid/demos/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jsgrid/demos/demos.css -------------------------------------------------------------------------------- /apps/base/static/plugins/jsgrid/jsgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jsgrid/jsgrid.css -------------------------------------------------------------------------------- /apps/base/static/plugins/jsgrid/jsgrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jsgrid/jsgrid.js -------------------------------------------------------------------------------- /apps/base/static/plugins/jsgrid/jsgrid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jsgrid/jsgrid.min.css -------------------------------------------------------------------------------- /apps/base/static/plugins/jsgrid/jsgrid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/jsgrid/jsgrid.min.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/af.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ar-dz.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ar-kw.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ar-ly.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ar.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/az.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/be.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/bg.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/bm.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/bn.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/bo.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/br.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/bs.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ca.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/cs.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/cv.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/cy.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/da.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/de-at.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/de-ch.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/de.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/dv.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/el.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/en-SG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/en-SG.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/en-au.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/en-ca.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/en-gb.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/en-ie.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/en-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/en-il.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/en-nz.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/eo.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/es-do.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/es-us.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/es.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/et.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/eu.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/fa.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/fi.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/fo.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/fr-ca.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/fr-ch.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/fr.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/fy.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ga.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/gd.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/gl.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/gu.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/he.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/hi.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/hr.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/hu.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/hy-am.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/id.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/is.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/it-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/it-ch.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/it.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ja.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/jv.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ka.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/kk.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/km.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/kn.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ko.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ku.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ky.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/lb.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/lo.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/lt.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/lv.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/me.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/mi.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/mk.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ml.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/mn.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/mr.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ms-my.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ms.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/mt.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/my.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/nb.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ne.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/nl-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/nl-be.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/nl.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/nn.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/pa-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/pa-in.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/pl.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/pt-br.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/pt.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ro.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ru.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/sd.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/se.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/si.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/sk.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/sl.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/sq.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/sr.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ss.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/sv.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/sw.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ta.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/te.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/tet.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/tg.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/th.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/tl-ph.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/tlh.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/tr.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/tzl.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/tzm.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ug-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ug-cn.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/uk.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/ur.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/uz.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/vi.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/yo.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/zh-cn.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/zh-hk.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locale/zh-tw.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locales.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/locales.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/locales.min.js -------------------------------------------------------------------------------- /apps/base/static/plugins/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/moment/moment.min.js -------------------------------------------------------------------------------- /apps/base/static/plugins/morris/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/morris/morris.css -------------------------------------------------------------------------------- /apps/base/static/plugins/morris/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/morris/morris.js -------------------------------------------------------------------------------- /apps/base/static/plugins/morris/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/morris/morris.min.js -------------------------------------------------------------------------------- /apps/base/static/plugins/pace-progress/pace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/pace-progress/pace.js -------------------------------------------------------------------------------- /apps/base/static/plugins/popper/esm/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/popper/esm/popper.js -------------------------------------------------------------------------------- /apps/base/static/plugins/popper/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/popper/popper-utils.js -------------------------------------------------------------------------------- /apps/base/static/plugins/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/popper/popper.js -------------------------------------------------------------------------------- /apps/base/static/plugins/popper/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/popper/popper.js.map -------------------------------------------------------------------------------- /apps/base/static/plugins/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/popper/popper.min.js -------------------------------------------------------------------------------- /apps/base/static/plugins/popper/umd/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/popper/umd/popper.js -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/.eslintrc.js -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/Gruntfile.js -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/README.md -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/bower.json -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/dev/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/dev/banner.txt -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/dev/test/vml/dom.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | QUnit.module('DOM'); 4 | 5 | })(); -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/history.md -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/license.txt -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/package.json -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/raphael.js -------------------------------------------------------------------------------- /apps/base/static/plugins/raphael/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/raphael/raphael.min.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/af.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/az.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/da.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/de.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/el.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/en.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/es.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/et.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/he.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /apps/base/static/plugins/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /apps/base/static/plugins/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/plugins/toastr/toastr.css -------------------------------------------------------------------------------- /apps/base/static/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /apps/base/static/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /apps/base/static/vendor/select2/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/vendor/select2/Gruntfile.js -------------------------------------------------------------------------------- /apps/base/static/vendor/select2/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/vendor/select2/bower.json -------------------------------------------------------------------------------- /apps/base/static/vendor/select2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/static/vendor/select2/package.json -------------------------------------------------------------------------------- /apps/base/templates/base/company_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/company_form.html -------------------------------------------------------------------------------- /apps/base/templates/base/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/dashboard.html -------------------------------------------------------------------------------- /apps/base/templates/base/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/delete.html -------------------------------------------------------------------------------- /apps/base/templates/base/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/detail.html -------------------------------------------------------------------------------- /apps/base/templates/base/detail_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/detail_body.html -------------------------------------------------------------------------------- /apps/base/templates/base/erp_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/erp_footer.html -------------------------------------------------------------------------------- /apps/base/templates/base/footer_total.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/footer_total.html -------------------------------------------------------------------------------- /apps/base/templates/base/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/form.html -------------------------------------------------------------------------------- /apps/base/templates/base/formset_body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/formset_body.html -------------------------------------------------------------------------------- /apps/base/templates/base/header_botons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/header_botons.html -------------------------------------------------------------------------------- /apps/base/templates/base/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/index.html -------------------------------------------------------------------------------- /apps/base/templates/base/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/install.html -------------------------------------------------------------------------------- /apps/base/templates/base/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/list.html -------------------------------------------------------------------------------- /apps/base/templates/base/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/navbar.html -------------------------------------------------------------------------------- /apps/base/templates/base/note_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/note_list.html -------------------------------------------------------------------------------- /apps/base/templates/base/ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/ok.html -------------------------------------------------------------------------------- /apps/base/templates/base/plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/plugin.html -------------------------------------------------------------------------------- /apps/base/templates/base/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/sidebar.html -------------------------------------------------------------------------------- /apps/base/templates/base/time_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/base/time_line.html -------------------------------------------------------------------------------- /apps/base/templates/blog/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/blog/blog.html -------------------------------------------------------------------------------- /apps/base/templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/blog/post.html -------------------------------------------------------------------------------- /apps/base/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/home.html -------------------------------------------------------------------------------- /apps/base/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/login.html -------------------------------------------------------------------------------- /apps/base/templates/shop/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/shop/product.html -------------------------------------------------------------------------------- /apps/base/templates/shop/shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/shop/shop.html -------------------------------------------------------------------------------- /apps/base/templates/usercustom/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/usercustom/login.html -------------------------------------------------------------------------------- /apps/base/templates/usercustom/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/usercustom/profile.html -------------------------------------------------------------------------------- /apps/base/templates/usercustom/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templates/usercustom/signup.html -------------------------------------------------------------------------------- /apps/base/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/base/templatetags/erp_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/templatetags/erp_tags.py -------------------------------------------------------------------------------- /apps/base/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/tests.py -------------------------------------------------------------------------------- /apps/base/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/tokens.py -------------------------------------------------------------------------------- /apps/base/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/__init__.py -------------------------------------------------------------------------------- /apps/base/urls/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/attribute.py -------------------------------------------------------------------------------- /apps/base/urls/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/base.py -------------------------------------------------------------------------------- /apps/base/urls/bi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/bi.py -------------------------------------------------------------------------------- /apps/base/urls/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/channel.py -------------------------------------------------------------------------------- /apps/base/urls/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/comment.py -------------------------------------------------------------------------------- /apps/base/urls/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/company.py -------------------------------------------------------------------------------- /apps/base/urls/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/country.py -------------------------------------------------------------------------------- /apps/base/urls/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/cron.py -------------------------------------------------------------------------------- /apps/base/urls/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/currency.py -------------------------------------------------------------------------------- /apps/base/urls/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/email.py -------------------------------------------------------------------------------- /apps/base/urls/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/event.py -------------------------------------------------------------------------------- /apps/base/urls/faq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/faq.py -------------------------------------------------------------------------------- /apps/base/urls/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/file.py -------------------------------------------------------------------------------- /apps/base/urls/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/image.py -------------------------------------------------------------------------------- /apps/base/urls/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/log.py -------------------------------------------------------------------------------- /apps/base/urls/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/menu.py -------------------------------------------------------------------------------- /apps/base/urls/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/message.py -------------------------------------------------------------------------------- /apps/base/urls/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/meta.py -------------------------------------------------------------------------------- /apps/base/urls/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/note.py -------------------------------------------------------------------------------- /apps/base/urls/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/page.py -------------------------------------------------------------------------------- /apps/base/urls/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/parameter.py -------------------------------------------------------------------------------- /apps/base/urls/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/partner.py -------------------------------------------------------------------------------- /apps/base/urls/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/plugin.py -------------------------------------------------------------------------------- /apps/base/urls/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/post.py -------------------------------------------------------------------------------- /apps/base/urls/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/product.py -------------------------------------------------------------------------------- /apps/base/urls/product_brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/product_brand.py -------------------------------------------------------------------------------- /apps/base/urls/product_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/product_category.py -------------------------------------------------------------------------------- /apps/base/urls/product_category_uom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/product_category_uom.py -------------------------------------------------------------------------------- /apps/base/urls/product_webcategory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/product_webcategory.py -------------------------------------------------------------------------------- /apps/base/urls/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/rest.py -------------------------------------------------------------------------------- /apps/base/urls/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/sequence.py -------------------------------------------------------------------------------- /apps/base/urls/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/shop.py -------------------------------------------------------------------------------- /apps/base/urls/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/tag.py -------------------------------------------------------------------------------- /apps/base/urls/tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/tax.py -------------------------------------------------------------------------------- /apps/base/urls/uom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/uom.py -------------------------------------------------------------------------------- /apps/base/urls/usercustom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/usercustom.py -------------------------------------------------------------------------------- /apps/base/urls/variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/variant.py -------------------------------------------------------------------------------- /apps/base/urls/wparameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/wparameter.py -------------------------------------------------------------------------------- /apps/base/urls/wpayment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/urls/wpayment.py -------------------------------------------------------------------------------- /apps/base/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/__init__.py -------------------------------------------------------------------------------- /apps/base/views/activatelanguage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/activatelanguage.py -------------------------------------------------------------------------------- /apps/base/views/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/attribute.py -------------------------------------------------------------------------------- /apps/base/views/base_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/base_config.py -------------------------------------------------------------------------------- /apps/base/views/bi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/bi.py -------------------------------------------------------------------------------- /apps/base/views/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/blog.py -------------------------------------------------------------------------------- /apps/base/views/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/channel.py -------------------------------------------------------------------------------- /apps/base/views/comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/comment.py -------------------------------------------------------------------------------- /apps/base/views/company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/company.py -------------------------------------------------------------------------------- /apps/base/views/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/country.py -------------------------------------------------------------------------------- /apps/base/views/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/cron.py -------------------------------------------------------------------------------- /apps/base/views/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/currency.py -------------------------------------------------------------------------------- /apps/base/views/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/email.py -------------------------------------------------------------------------------- /apps/base/views/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/event.py -------------------------------------------------------------------------------- /apps/base/views/faq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/faq.py -------------------------------------------------------------------------------- /apps/base/views/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/file.py -------------------------------------------------------------------------------- /apps/base/views/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/home.py -------------------------------------------------------------------------------- /apps/base/views/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/image.py -------------------------------------------------------------------------------- /apps/base/views/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/log.py -------------------------------------------------------------------------------- /apps/base/views/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/menu.py -------------------------------------------------------------------------------- /apps/base/views/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/message.py -------------------------------------------------------------------------------- /apps/base/views/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/meta.py -------------------------------------------------------------------------------- /apps/base/views/note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/note.py -------------------------------------------------------------------------------- /apps/base/views/other_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/other_views.py -------------------------------------------------------------------------------- /apps/base/views/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/page.py -------------------------------------------------------------------------------- /apps/base/views/parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/parameter.py -------------------------------------------------------------------------------- /apps/base/views/partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/partner.py -------------------------------------------------------------------------------- /apps/base/views/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/plugin.py -------------------------------------------------------------------------------- /apps/base/views/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/post.py -------------------------------------------------------------------------------- /apps/base/views/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/product.py -------------------------------------------------------------------------------- /apps/base/views/product_brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/product_brand.py -------------------------------------------------------------------------------- /apps/base/views/product_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/product_category.py -------------------------------------------------------------------------------- /apps/base/views/product_category_uom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/product_category_uom.py -------------------------------------------------------------------------------- /apps/base/views/product_webcategory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/product_webcategory.py -------------------------------------------------------------------------------- /apps/base/views/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/rest.py -------------------------------------------------------------------------------- /apps/base/views/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/sequence.py -------------------------------------------------------------------------------- /apps/base/views/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/shop.py -------------------------------------------------------------------------------- /apps/base/views/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/tag.py -------------------------------------------------------------------------------- /apps/base/views/tax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/tax.py -------------------------------------------------------------------------------- /apps/base/views/uom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/uom.py -------------------------------------------------------------------------------- /apps/base/views/usercustom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/usercustom.py -------------------------------------------------------------------------------- /apps/base/views/variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/variant.py -------------------------------------------------------------------------------- /apps/base/views/web_father.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/web_father.py -------------------------------------------------------------------------------- /apps/base/views/website_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/website_config.py -------------------------------------------------------------------------------- /apps/base/views/wparameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/wparameter.py -------------------------------------------------------------------------------- /apps/base/views/wpayment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/base/views/wpayment.py -------------------------------------------------------------------------------- /apps/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/home/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/admin.py -------------------------------------------------------------------------------- /apps/home/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/apps.py -------------------------------------------------------------------------------- /apps/home/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/info.json -------------------------------------------------------------------------------- /apps/home/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/models.py -------------------------------------------------------------------------------- /apps/home/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/home/static/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/LICENSE -------------------------------------------------------------------------------- /apps/home/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/README.md -------------------------------------------------------------------------------- /apps/home/static/css/agency.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/css/agency.css -------------------------------------------------------------------------------- /apps/home/static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/favicon.png -------------------------------------------------------------------------------- /apps/home/static/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/gulpfile.js -------------------------------------------------------------------------------- /apps/home/static/img/174848.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/174848.svg -------------------------------------------------------------------------------- /apps/home/static/img/174851.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/174851.svg -------------------------------------------------------------------------------- /apps/home/static/img/174855.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/174855.svg -------------------------------------------------------------------------------- /apps/home/static/img/174857.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/174857.svg -------------------------------------------------------------------------------- /apps/home/static/img/174863.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/174863.svg -------------------------------------------------------------------------------- /apps/home/static/img/174876.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/174876.svg -------------------------------------------------------------------------------- /apps/home/static/img/174883.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/174883.svg -------------------------------------------------------------------------------- /apps/home/static/img/_header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/_header-bg.png -------------------------------------------------------------------------------- /apps/home/static/img/about/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/about/1.jpg -------------------------------------------------------------------------------- /apps/home/static/img/about/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/about/2.jpg -------------------------------------------------------------------------------- /apps/home/static/img/about/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/about/3.jpg -------------------------------------------------------------------------------- /apps/home/static/img/about/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/about/4.jpg -------------------------------------------------------------------------------- /apps/home/static/img/header-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/header-bg2.jpg -------------------------------------------------------------------------------- /apps/home/static/img/logos/designmodo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/logos/designmodo.jpg -------------------------------------------------------------------------------- /apps/home/static/img/logos/envato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/logos/envato.jpg -------------------------------------------------------------------------------- /apps/home/static/img/logos/img-tools-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/logos/img-tools-1.png -------------------------------------------------------------------------------- /apps/home/static/img/logos/img-tools-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/logos/img-tools-2.png -------------------------------------------------------------------------------- /apps/home/static/img/logos/img-tools-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/logos/img-tools-3.png -------------------------------------------------------------------------------- /apps/home/static/img/logos/img-tools-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/logos/img-tools-4.png -------------------------------------------------------------------------------- /apps/home/static/img/logos/themeforest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/logos/themeforest.jpg -------------------------------------------------------------------------------- /apps/home/static/img/map-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/map-image.png -------------------------------------------------------------------------------- /apps/home/static/img/portfolio/01-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/portfolio/01-full.jpg -------------------------------------------------------------------------------- /apps/home/static/img/portfolio/02-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/portfolio/02-full.jpg -------------------------------------------------------------------------------- /apps/home/static/img/portfolio/03-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/portfolio/03-full.jpg -------------------------------------------------------------------------------- /apps/home/static/img/portfolio/04-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/portfolio/04-full.jpg -------------------------------------------------------------------------------- /apps/home/static/img/portfolio/05-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/portfolio/05-full.jpg -------------------------------------------------------------------------------- /apps/home/static/img/portfolio/06-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/portfolio/06-full.jpg -------------------------------------------------------------------------------- /apps/home/static/img/pyerp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/pyerp.png -------------------------------------------------------------------------------- /apps/home/static/img/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/team/1.jpg -------------------------------------------------------------------------------- /apps/home/static/img/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/team/2.jpg -------------------------------------------------------------------------------- /apps/home/static/img/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/team/3.jpg -------------------------------------------------------------------------------- /apps/home/static/img/team/marlon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/img/team/marlon.jpg -------------------------------------------------------------------------------- /apps/home/static/js/agency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/js/agency.js -------------------------------------------------------------------------------- /apps/home/static/js/agency.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/js/agency.min.js -------------------------------------------------------------------------------- /apps/home/static/js/contact_me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/js/contact_me.js -------------------------------------------------------------------------------- /apps/home/static/js/jqBootstrapValidation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/js/jqBootstrapValidation.js -------------------------------------------------------------------------------- /apps/home/static/mail/contact_me.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/mail/contact_me.php -------------------------------------------------------------------------------- /apps/home/static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/package-lock.json -------------------------------------------------------------------------------- /apps/home/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/package.json -------------------------------------------------------------------------------- /apps/home/static/scss/agency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/agency.scss -------------------------------------------------------------------------------- /apps/home/static/scss/base/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/base/_mixins.scss -------------------------------------------------------------------------------- /apps/home/static/scss/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/base/_page.scss -------------------------------------------------------------------------------- /apps/home/static/scss/base/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/base/_variables.scss -------------------------------------------------------------------------------- /apps/home/static/scss/layout/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/layout/_contact.scss -------------------------------------------------------------------------------- /apps/home/static/scss/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/layout/_footer.scss -------------------------------------------------------------------------------- /apps/home/static/scss/layout/_masthead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/layout/_masthead.scss -------------------------------------------------------------------------------- /apps/home/static/scss/layout/_portfolio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/layout/_portfolio.scss -------------------------------------------------------------------------------- /apps/home/static/scss/layout/_services.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/layout/_services.scss -------------------------------------------------------------------------------- /apps/home/static/scss/layout/_team.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/layout/_team.scss -------------------------------------------------------------------------------- /apps/home/static/scss/layout/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/scss/layout/_timeline.scss -------------------------------------------------------------------------------- /apps/home/static/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /apps/home/static/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/static/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /apps/home/templates/home/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/templates/home/footer.html -------------------------------------------------------------------------------- /apps/home/templates/home/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/templates/home/head.html -------------------------------------------------------------------------------- /apps/home/templates/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/templates/home/home.html -------------------------------------------------------------------------------- /apps/home/templates/home/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/templates/home/index.html -------------------------------------------------------------------------------- /apps/home/templates/home/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/templates/home/license.html -------------------------------------------------------------------------------- /apps/home/templates/home/menu.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/home/templates/home/nav_bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/templates/home/nav_bar.html -------------------------------------------------------------------------------- /apps/home/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/tests.py -------------------------------------------------------------------------------- /apps/home/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/urls.py -------------------------------------------------------------------------------- /apps/home/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/home/views/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/home/views/views.py -------------------------------------------------------------------------------- /apps/l10n_spain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/l10n_spain/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/l10n_spain/admin.py -------------------------------------------------------------------------------- /apps/l10n_spain/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/l10n_spain/apps.py -------------------------------------------------------------------------------- /apps/l10n_spain/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/l10n_spain/icon.png -------------------------------------------------------------------------------- /apps/l10n_spain/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/l10n_spain/info.json -------------------------------------------------------------------------------- /apps/l10n_spain/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/l10n_spain/models.py -------------------------------------------------------------------------------- /apps/l10n_spain/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/l10n_spain/tests.py -------------------------------------------------------------------------------- /apps/l10n_spain/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/l10n_spain/urls.py -------------------------------------------------------------------------------- /apps/l10n_spain/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/l10n_spain/views.py -------------------------------------------------------------------------------- /apps/marketplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/marketplace/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/marketplace/admin.py -------------------------------------------------------------------------------- /apps/marketplace/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/marketplace/apps.py -------------------------------------------------------------------------------- /apps/marketplace/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/marketplace/info.json -------------------------------------------------------------------------------- /apps/marketplace/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/marketplace/models.py -------------------------------------------------------------------------------- /apps/marketplace/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/marketplace/tests.py -------------------------------------------------------------------------------- /apps/marketplace/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/marketplace/urls.py -------------------------------------------------------------------------------- /apps/marketplace/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/marketplace/views.py -------------------------------------------------------------------------------- /apps/purchase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/__init__.py -------------------------------------------------------------------------------- /apps/purchase/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/admin.py -------------------------------------------------------------------------------- /apps/purchase/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/apps.py -------------------------------------------------------------------------------- /apps/purchase/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/forms.py -------------------------------------------------------------------------------- /apps/purchase/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/info.json -------------------------------------------------------------------------------- /apps/purchase/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/models.py -------------------------------------------------------------------------------- /apps/purchase/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/purchase/reports/purchaseorderpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/reports/purchaseorderpdf.py -------------------------------------------------------------------------------- /apps/purchase/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/signals.py -------------------------------------------------------------------------------- /apps/purchase/static/bootstrap-select-1.13.9/js/umd-outro.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | })); -------------------------------------------------------------------------------- /apps/purchase/templates/purchase/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/templates/purchase/delete.html -------------------------------------------------------------------------------- /apps/purchase/templates/purchase/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/templates/purchase/detail.html -------------------------------------------------------------------------------- /apps/purchase/templates/purchase/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/templates/purchase/form.html -------------------------------------------------------------------------------- /apps/purchase/templates/purchase/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/templates/purchase/menu.html -------------------------------------------------------------------------------- /apps/purchase/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/tests.py -------------------------------------------------------------------------------- /apps/purchase/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/translation.py -------------------------------------------------------------------------------- /apps/purchase/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/urls.py -------------------------------------------------------------------------------- /apps/purchase/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/purchase/views.py -------------------------------------------------------------------------------- /apps/run_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/run_server/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/run_server/admin.py -------------------------------------------------------------------------------- /apps/run_server/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/run_server/apps.py -------------------------------------------------------------------------------- /apps/run_server/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/run_server/info.json -------------------------------------------------------------------------------- /apps/run_server/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/run_server/models.py -------------------------------------------------------------------------------- /apps/run_server/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/run_server/tests.py -------------------------------------------------------------------------------- /apps/run_server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/run_server/urls.py -------------------------------------------------------------------------------- /apps/run_server/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/run_server/views.py -------------------------------------------------------------------------------- /apps/sale/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/__init__.py -------------------------------------------------------------------------------- /apps/sale/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/admin.py -------------------------------------------------------------------------------- /apps/sale/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/apps.py -------------------------------------------------------------------------------- /apps/sale/fixtures/PySaleOrderState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/fixtures/PySaleOrderState.json -------------------------------------------------------------------------------- /apps/sale/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/forms.py -------------------------------------------------------------------------------- /apps/sale/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/info.json -------------------------------------------------------------------------------- /apps/sale/management/commands/init_sale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/management/commands/init_sale.py -------------------------------------------------------------------------------- /apps/sale/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/models.py -------------------------------------------------------------------------------- /apps/sale/reports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/sale/reports/saleorderpdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/reports/saleorderpdf.py -------------------------------------------------------------------------------- /apps/sale/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/signals.py -------------------------------------------------------------------------------- /apps/sale/static/bootstrap-select-1.13.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/static/bootstrap-select-1.13.9.zip -------------------------------------------------------------------------------- /apps/sale/static/bootstrap-select-1.13.9/js/umd-outro.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | })); -------------------------------------------------------------------------------- /apps/sale/templates/sale/delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/templates/sale/delete.html -------------------------------------------------------------------------------- /apps/sale/templates/sale/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/templates/sale/detail.html -------------------------------------------------------------------------------- /apps/sale/templates/sale/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/templates/sale/form.html -------------------------------------------------------------------------------- /apps/sale/templates/sale/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/templates/sale/menu.html -------------------------------------------------------------------------------- /apps/sale/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/tests.py -------------------------------------------------------------------------------- /apps/sale/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/translation.py -------------------------------------------------------------------------------- /apps/sale/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/urls.py -------------------------------------------------------------------------------- /apps/sale/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/sale/views.py -------------------------------------------------------------------------------- /apps/stock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/stock/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/stock/admin.py -------------------------------------------------------------------------------- /apps/stock/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/stock/apps.py -------------------------------------------------------------------------------- /apps/stock/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/stock/info.json -------------------------------------------------------------------------------- /apps/stock/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/stock/models.py -------------------------------------------------------------------------------- /apps/stock/templates/stock/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/stock/templates/stock/menu.html -------------------------------------------------------------------------------- /apps/stock/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/stock/tests.py -------------------------------------------------------------------------------- /apps/stock/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/stock/urls.py -------------------------------------------------------------------------------- /apps/stock/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/apps/stock/views.py -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/00/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/00/index.html -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/animate.css -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/bootstrap-theme.css -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /docs/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /docs/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/bootstrap.css -------------------------------------------------------------------------------- /docs/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/bootstrap.css.map -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/custom.css -------------------------------------------------------------------------------- /docs/css/prettyPhoto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/prettyPhoto.css -------------------------------------------------------------------------------- /docs/css/stroke.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/stroke.css -------------------------------------------------------------------------------- /docs/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/css/style.css -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/favicon.png -------------------------------------------------------------------------------- /docs/fonts/Stroke-Gap-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/Stroke-Gap-Icons.eot -------------------------------------------------------------------------------- /docs/fonts/Stroke-Gap-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/Stroke-Gap-Icons.svg -------------------------------------------------------------------------------- /docs/fonts/Stroke-Gap-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/Stroke-Gap-Icons.ttf -------------------------------------------------------------------------------- /docs/fonts/Stroke-Gap-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/Stroke-Gap-Icons.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/lanenar_Lane.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/lanenar_Lane.eot -------------------------------------------------------------------------------- /docs/fonts/lanenar_Lane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/lanenar_Lane.svg -------------------------------------------------------------------------------- /docs/fonts/lanenar_Lane.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/lanenar_Lane.ttf -------------------------------------------------------------------------------- /docs/fonts/lanenar_Lane.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/fonts/lanenar_Lane.woff -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/bootstrap.js -------------------------------------------------------------------------------- /docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/custom.js -------------------------------------------------------------------------------- /docs/js/jquery.fitvids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/jquery.fitvids.js -------------------------------------------------------------------------------- /docs/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/jquery.min.js -------------------------------------------------------------------------------- /docs/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/jquery.min.map -------------------------------------------------------------------------------- /docs/js/jquery.prettyPhoto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/jquery.prettyPhoto.js -------------------------------------------------------------------------------- /docs/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/main.js -------------------------------------------------------------------------------- /docs/js/retina.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/retina.js -------------------------------------------------------------------------------- /docs/js/syntax-highlighter/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/syntax-highlighter/scripts/shCore.js -------------------------------------------------------------------------------- /docs/js/syntax-highlighter/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/syntax-highlighter/styles/shCore.css -------------------------------------------------------------------------------- /docs/js/wow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/docs/js/wow.js -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/index.html -------------------------------------------------------------------------------- /locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/manage.py -------------------------------------------------------------------------------- /marketing/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/.DS_Store -------------------------------------------------------------------------------- /marketing/PyERP logo 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/PyERP logo 2.png -------------------------------------------------------------------------------- /marketing/PyERP logo 23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/PyERP logo 23.png -------------------------------------------------------------------------------- /marketing/box_pyerp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/box_pyerp.jpeg -------------------------------------------------------------------------------- /marketing/box_pyerp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/box_pyerp.png -------------------------------------------------------------------------------- /marketing/icon 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/icon 2.png -------------------------------------------------------------------------------- /marketing/logo/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/1.jpeg -------------------------------------------------------------------------------- /marketing/logo/10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/10.jpeg -------------------------------------------------------------------------------- /marketing/logo/11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/11.jpeg -------------------------------------------------------------------------------- /marketing/logo/12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/12.jpeg -------------------------------------------------------------------------------- /marketing/logo/13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/13.jpeg -------------------------------------------------------------------------------- /marketing/logo/14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/14.jpeg -------------------------------------------------------------------------------- /marketing/logo/15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/15.jpeg -------------------------------------------------------------------------------- /marketing/logo/16.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/16.jpeg -------------------------------------------------------------------------------- /marketing/logo/17.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/17.jpeg -------------------------------------------------------------------------------- /marketing/logo/18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/18.jpeg -------------------------------------------------------------------------------- /marketing/logo/19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/19.jpeg -------------------------------------------------------------------------------- /marketing/logo/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/2.jpeg -------------------------------------------------------------------------------- /marketing/logo/20.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/20.jpeg -------------------------------------------------------------------------------- /marketing/logo/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/3.jpeg -------------------------------------------------------------------------------- /marketing/logo/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/4.jpeg -------------------------------------------------------------------------------- /marketing/logo/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/5.jpeg -------------------------------------------------------------------------------- /marketing/logo/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/6.jpeg -------------------------------------------------------------------------------- /marketing/logo/7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/7.jpeg -------------------------------------------------------------------------------- /marketing/logo/8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/8.jpeg -------------------------------------------------------------------------------- /marketing/logo/9.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/logo/9.jpeg -------------------------------------------------------------------------------- /marketing/marlon-falcon-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/marlon-falcon-youtube.png -------------------------------------------------------------------------------- /marketing/pyerp-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/pyerp-m.png -------------------------------------------------------------------------------- /marketing/pyerp-m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/pyerp-m1.png -------------------------------------------------------------------------------- /marketing/pyerp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/pyerp.png -------------------------------------------------------------------------------- /marketing/screenshot_pyerp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/screenshot_pyerp_1.png -------------------------------------------------------------------------------- /marketing/screenshot_pyerp_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/screenshot_pyerp_2.jpg -------------------------------------------------------------------------------- /marketing/screenshot_pyerp_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/screenshot_pyerp_3.png -------------------------------------------------------------------------------- /marketing/screenshot_pyerp_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/screenshot_pyerp_4.png -------------------------------------------------------------------------------- /marketing/screenshot_pyerp_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/screenshot_pyerp_5.png -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-02.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-03.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-04.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-05.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-06.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-07.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-08.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/PYERP WALLPAPERS-09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/PYERP WALLPAPERS-09.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 1-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 1-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 1-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 1-02.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 1-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 1-03.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 1-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 1-04.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 1-05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 1-05.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 2-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 2-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 2-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 2-02.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 2-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 2-03.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/mobile pyerp 2-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/mobile pyerp 2-04.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/wallpapers 1-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/wallpapers 1-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/wallpapers 2-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/wallpapers 2-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/wallpapers 3-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/wallpapers 3-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/wallpapers 4-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/wallpapers 4-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/wallpapers 5-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/wallpapers 5-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/wallpapers 6-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/wallpapers 6-01.jpg -------------------------------------------------------------------------------- /marketing/wallpapers/wallpapers-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/marketing/wallpapers/wallpapers-7.png -------------------------------------------------------------------------------- /media/_header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/_header-bg.png -------------------------------------------------------------------------------- /media/about/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/about/1.jpg -------------------------------------------------------------------------------- /media/about/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/about/2.jpg -------------------------------------------------------------------------------- /media/about/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/about/3.jpg -------------------------------------------------------------------------------- /media/about/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/about/4.jpg -------------------------------------------------------------------------------- /media/avatar/default_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/avatar/default_avatar.png -------------------------------------------------------------------------------- /media/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/favicon.png -------------------------------------------------------------------------------- /media/favicon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/favicon_white.png -------------------------------------------------------------------------------- /media/flag/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/flag/en.png -------------------------------------------------------------------------------- /media/flag/es-ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/flag/es-ve.png -------------------------------------------------------------------------------- /media/flag/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/flag/es.png -------------------------------------------------------------------------------- /media/header-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/header-bg2.jpg -------------------------------------------------------------------------------- /media/logo/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logo/1.png -------------------------------------------------------------------------------- /media/logo/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logo/2.png -------------------------------------------------------------------------------- /media/logo/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logo/3.jpg -------------------------------------------------------------------------------- /media/logo/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logo/5.png -------------------------------------------------------------------------------- /media/logo/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logo/7.png -------------------------------------------------------------------------------- /media/logo/default_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logo/default_logo.png -------------------------------------------------------------------------------- /media/logo/pyerp_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logo/pyerp_logo.png -------------------------------------------------------------------------------- /media/logos/creative-market.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logos/creative-market.jpg -------------------------------------------------------------------------------- /media/logos/designmodo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logos/designmodo.jpg -------------------------------------------------------------------------------- /media/logos/envato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logos/envato.jpg -------------------------------------------------------------------------------- /media/logos/img-tools-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logos/img-tools-1.png -------------------------------------------------------------------------------- /media/logos/img-tools-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logos/img-tools-2.png -------------------------------------------------------------------------------- /media/logos/img-tools-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logos/img-tools-3.png -------------------------------------------------------------------------------- /media/logos/img-tools-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logos/img-tools-4.png -------------------------------------------------------------------------------- /media/logos/themeforest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/logos/themeforest.jpg -------------------------------------------------------------------------------- /media/map-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/map-image.png -------------------------------------------------------------------------------- /media/partner/default_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/partner/default_partner.png -------------------------------------------------------------------------------- /media/plugin/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/plugin/flow.png -------------------------------------------------------------------------------- /media/plugin/l10n_chile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/plugin/l10n_chile.png -------------------------------------------------------------------------------- /media/plugin/l10n_spain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/plugin/l10n_spain.png -------------------------------------------------------------------------------- /media/plugin/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/plugin/paypal.png -------------------------------------------------------------------------------- /media/portfolio/01-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/01-full.jpg -------------------------------------------------------------------------------- /media/portfolio/01-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/01-thumbnail.jpg -------------------------------------------------------------------------------- /media/portfolio/02-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/02-full.jpg -------------------------------------------------------------------------------- /media/portfolio/02-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/02-thumbnail.jpg -------------------------------------------------------------------------------- /media/portfolio/03-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/03-full.jpg -------------------------------------------------------------------------------- /media/portfolio/03-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/03-thumbnail.jpg -------------------------------------------------------------------------------- /media/portfolio/04-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/04-full.jpg -------------------------------------------------------------------------------- /media/portfolio/04-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/04-thumbnail.jpg -------------------------------------------------------------------------------- /media/portfolio/05-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/05-full.jpg -------------------------------------------------------------------------------- /media/portfolio/05-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/05-thumbnail.jpg -------------------------------------------------------------------------------- /media/portfolio/06-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/06-full.jpg -------------------------------------------------------------------------------- /media/portfolio/06-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/portfolio/06-thumbnail.jpg -------------------------------------------------------------------------------- /media/product/default_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/product/default_product.png -------------------------------------------------------------------------------- /media/pyerp-marketing/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/01.png -------------------------------------------------------------------------------- /media/pyerp-marketing/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/02.png -------------------------------------------------------------------------------- /media/pyerp-marketing/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/03.png -------------------------------------------------------------------------------- /media/pyerp-marketing/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/04.png -------------------------------------------------------------------------------- /media/pyerp-marketing/PyERP logo 23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/PyERP logo 23.png -------------------------------------------------------------------------------- /media/pyerp-marketing/PyERP_logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/PyERP_logo_2.png -------------------------------------------------------------------------------- /media/pyerp-marketing/icon 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/icon 2.png -------------------------------------------------------------------------------- /media/pyerp-marketing/pyerp-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/pyerp-m.png -------------------------------------------------------------------------------- /media/pyerp-marketing/pyerp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp-marketing/pyerp.png -------------------------------------------------------------------------------- /media/pyerp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/pyerp.png -------------------------------------------------------------------------------- /media/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/team/1.jpg -------------------------------------------------------------------------------- /media/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/team/2.jpg -------------------------------------------------------------------------------- /media/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/team/3.jpg -------------------------------------------------------------------------------- /media/team/marlon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/media/team/marlon.jpg -------------------------------------------------------------------------------- /pyerp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyerp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/pyerp/settings.py -------------------------------------------------------------------------------- /pyerp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/pyerp/urls.py -------------------------------------------------------------------------------- /pyerp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/pyerp/wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falconsoft3d/pyerp/HEAD/requirements.txt --------------------------------------------------------------------------------