README.md edited

This commit is contained in:
2024-12-06 10:45:08 +09:00
parent 09e4edee6b
commit 1aa387aa59
13921 changed files with 2057290 additions and 10 deletions

View File

@@ -0,0 +1,229 @@
Metadata-Version: 2.1
Name: django-jet
Version: 1.0.8
Summary: Modern template for Django admin interface with improved functionality
Home-page: https://github.com/geex-arts/django-jet
Author: Denis Kildishev
Author-email: support@jet.geex-arts.com
License: AGPLv3
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Django
Classifier: License :: Free for non-commercial use
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Environment :: Web Environment
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: User Interfaces
License-File: LICENSE
==========
Django JET
==========
.. image:: https://travis-ci.org/geex-arts/django-jet.svg?branch=master
:target: https://travis-ci.org/geex-arts/django-jet
**Modern template for Django admin interface with improved functionality**
+-----------------------------------------------------------------------------------------------------------------------------------+
| Attention! **NEW JET** |
+===================================================================================================================================+
| **We are proud to announce completely new Jet. Please check out Live Demo.** |
| |
| Developing of new features for Django Jet will be frozen, only critical bugs will be fixed. |
+-----------------------------------------------------------------------------------------------------------------------------------+
| `Live Demo <https://app.jetadmin.io/demo?utm_source=jet&utm_medium=banner&utm_campaign=github&utm_content=link&utm_term=promo>`_ |
+-----------------------------------------------------------------------------------------------------------------------------------+
Django JET has two kinds of licenses: open-source (AGPLv3) and commercial. Please note that using AGPLv3
code in your programs make them AGPL compatible too. So if you don't want to comply with that we can provide you a commercial
license (visit Home page). The commercial license is designed for using Django JET in commercial products
and applications without the provisions of the AGPLv3.
.. image:: https://raw.githubusercontent.com/geex-arts/jet/static/logo.png
:width: 500px
:height: 500px
:scale: 50%
:alt: Logo
:align: center
* Home page: http://jet.geex-arts.com/
* **New Jet**: `Live Demo <https://app.jetadmin.io/demo?utm_source=jet&utm_medium=banner&utm_campaign=github&utm_content=link&utm_term=promo>`_
* Live Demo: http://demo.jet.geex-arts.com/admin/
* Documentation: http://jet.readthedocs.org/
* libi.io http://libi.io/library/1683/django-jet
* PyPI: https://pypi.python.org/pypi/django-jet
* Support: support@jet.geex-arts.com
Why Django JET?
===============
* New fresh look
* Responsive mobile interface
* Useful admin home page
* Minimal template overriding
* Easy integration
* Themes support
* Autocompletion
* Handy controls
Screenshots
===========
.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen1_720.png
:alt: Screenshot #1
:align: center
:target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen1.png
.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen2_720.png
:alt: Screenshot #2
:align: center
:target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen2.png
.. image:: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen3_720.png
:alt: Screenshot #3
:align: center
:target: https://raw.githubusercontent.com/geex-arts/django-jet/static/screen3.png
Installation
============
* Download and install latest version of Django JET:
.. code:: python
pip install django-jet
# or
easy_install django-jet
* Add 'jet' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'django.contrib.admin'):
.. code:: python
INSTALLED_APPS = (
...
'jet',
'django.contrib.admin',
)
* Make sure ``django.template.context_processors.request`` context processor is enabled in settings.py (Django 1.8+ way):
.. code:: python
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
...
'django.template.context_processors.request',
...
],
},
},
]
.. warning::
Before Django 1.8 you should specify context processors different way. Also use ``django.core.context_processors.request`` instead of ``django.template.context_processors.request``.
.. code:: python
from django.conf import global_settings
TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
'django.core.context_processors.request',
)
* Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for relatedlookups and autocompletes):
.. code:: python
urlpatterns = patterns(
'',
url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
url(r'^admin/', include(admin.site.urls)),
...
)
* Create database tables:
.. code:: python
python manage.py migrate jet
# or
python manage.py syncdb
* Collect static if you are in production environment:
.. code:: python
python manage.py collectstatic
* Clear your browser cache
Dashboard installation
======================
.. note:: Dashboard is located into a separate application. So after a typical JET installation it won't be active.
To enable dashboard application follow these steps:
* Add 'jet.dashboard' application to the INSTALLED_APPS setting of your Django project settings.py file (note it should be before 'jet'):
.. code:: python
INSTALLED_APPS = (
...
'jet.dashboard',
'jet',
'django.contrib.admin',
...
)
* Add URL-pattern to the urlpatterns of your Django project urls.py file (they are needed for relatedlookups and autocompletes):
.. code:: python
urlpatterns = patterns(
'',
url(r'^jet/', include('jet.urls', 'jet')), # Django JET URLS
url(r'^jet/dashboard/', include('jet.dashboard.urls', 'jet-dashboard')), # Django JET dashboard URLS
url(r'^admin/', include(admin.site.urls)),
...
)
* **For Google Analytics widgets only** install python package:
.. code::
pip install google-api-python-client==1.4.1
* Create database tables:
.. code:: python
python manage.py migrate dashboard
# or
python manage.py syncdb
* Collect static if you are in production environment:
.. code:: python
python manage.py collectstatic

View File

@@ -0,0 +1,456 @@
LICENSE
MANIFEST.in
README.rst
setup.cfg
setup.py
django_jet.egg-info/PKG-INFO
django_jet.egg-info/SOURCES.txt
django_jet.egg-info/dependency_links.txt
django_jet.egg-info/not-zip-safe
django_jet.egg-info/requires.txt
django_jet.egg-info/top_level.txt
jet/__init__.py
jet/admin.py
jet/filters.py
jet/forms.py
jet/models.py
jet/ordered_set.py
jet/settings.py
jet/urls.py
jet/utils.py
jet/views.py
jet/dashboard/__init__.py
jet/dashboard/dashboard.py
jet/dashboard/forms.py
jet/dashboard/models.py
jet/dashboard/modules.py
jet/dashboard/settings.py
jet/dashboard/urls.py
jet/dashboard/utils.py
jet/dashboard/views.py
jet/dashboard/dashboard_modules/__init__.py
jet/dashboard/dashboard_modules/google_analytics.py
jet/dashboard/dashboard_modules/google_analytics_views.py
jet/dashboard/dashboard_modules/yandex_metrika.py
jet/dashboard/dashboard_modules/yandex_metrika_views.py
jet/dashboard/locale/ar/LC_MESSAGES/django.mo
jet/dashboard/locale/ar/LC_MESSAGES/django.po
jet/dashboard/locale/ar/LC_MESSAGES/djangojs.mo
jet/dashboard/locale/ar/LC_MESSAGES/djangojs.po
jet/dashboard/locale/cs/LC_MESSAGES/django.mo
jet/dashboard/locale/cs/LC_MESSAGES/django.po
jet/dashboard/locale/cs/LC_MESSAGES/djangojs.mo
jet/dashboard/locale/cs/LC_MESSAGES/djangojs.po
jet/dashboard/locale/de/LC_MESSAGES/django.mo
jet/dashboard/locale/de/LC_MESSAGES/django.po
jet/dashboard/locale/de/LC_MESSAGES/djangojs.mo
jet/dashboard/locale/de/LC_MESSAGES/djangojs.po
jet/dashboard/locale/en/LC_MESSAGES/django.mo
jet/dashboard/locale/en/LC_MESSAGES/django.po
jet/dashboard/locale/en/LC_MESSAGES/djangojs.mo
jet/dashboard/locale/en/LC_MESSAGES/djangojs.po
jet/dashboard/locale/es/LC_MESSAGES/django.mo
jet/dashboard/locale/es/LC_MESSAGES/django.po
jet/dashboard/locale/es/LC_MESSAGES/djangojs.mo
jet/dashboard/locale/es/LC_MESSAGES/djangojs.po
jet/dashboard/locale/fa/LC_MESSAGES/django.po
jet/dashboard/locale/fa/LC_MESSAGES/djangojs.po
jet/dashboard/locale/fr/LC_MESSAGES/django.po
jet/dashboard/locale/fr/LC_MESSAGES/djangojs.po
jet/dashboard/locale/pl/LC_MESSAGES/django.mo
jet/dashboard/locale/pl/LC_MESSAGES/django.po
jet/dashboard/locale/pt-br/LC_MESSAGES/django.mo
jet/dashboard/locale/pt-br/LC_MESSAGES/django.po
jet/dashboard/locale/pt-br/LC_MESSAGES/djangojs.mo
jet/dashboard/locale/pt-br/LC_MESSAGES/djangojs.po
jet/dashboard/locale/ru/LC_MESSAGES/django.mo
jet/dashboard/locale/ru/LC_MESSAGES/django.po
jet/dashboard/locale/ru/LC_MESSAGES/djangojs.mo
jet/dashboard/locale/ru/LC_MESSAGES/djangojs.po
jet/dashboard/locale/zh_cn/LC_MESSAGES/django.mo
jet/dashboard/locale/zh_cn/LC_MESSAGES/django.po
jet/dashboard/migrations/0001_initial.py
jet/dashboard/migrations/__init__.py
jet/dashboard/south_migrations/0001_initial.py
jet/dashboard/south_migrations/__init__.py
jet/dashboard/static/jet.dashboard/dashboard_modules/google_analytics.js
jet/dashboard/static/jet.dashboard/dashboard_modules/yandex_metrika.js
jet/dashboard/static/jet.dashboard/vendor/chart.js/CONTRIBUTING.md
jet/dashboard/static/jet.dashboard/vendor/chart.js/Chart.js
jet/dashboard/static/jet.dashboard/vendor/chart.js/Chart.min.js
jet/dashboard/static/jet.dashboard/vendor/chart.js/LICENSE.md
jet/dashboard/static/jet.dashboard/vendor/chart.js/README.md
jet/dashboard/templates/admin/app_index.html
jet/dashboard/templates/admin/index.html
jet/dashboard/templates/jet.dashboard/dashboard.html
jet/dashboard/templates/jet.dashboard/dashboard_tools.html
jet/dashboard/templates/jet.dashboard/module.html
jet/dashboard/templates/jet.dashboard/update_module.html
jet/dashboard/templates/jet.dashboard/update_module_fieldset.html
jet/dashboard/templates/jet.dashboard/modules/app_list.html
jet/dashboard/templates/jet.dashboard/modules/feed.html
jet/dashboard/templates/jet.dashboard/modules/google_analytics_period_visitors.html
jet/dashboard/templates/jet.dashboard/modules/google_analytics_visitors_chart.html
jet/dashboard/templates/jet.dashboard/modules/google_analytics_visitors_totals.html
jet/dashboard/templates/jet.dashboard/modules/link_list.html
jet/dashboard/templates/jet.dashboard/modules/model_list.html
jet/dashboard/templates/jet.dashboard/modules/recent_actions.html
jet/dashboard/templates/jet.dashboard/modules/yandex_metrika_period_visitors.html
jet/dashboard/templates/jet.dashboard/modules/yandex_metrika_visitors_chart.html
jet/dashboard/templates/jet.dashboard/modules/yandex_metrika_visitors_totals.html
jet/dashboard/templatetags/__init__.py
jet/dashboard/templatetags/jet_dashboard_tags.py
jet/locale/ar/LC_MESSAGES/django.mo
jet/locale/ar/LC_MESSAGES/django.po
jet/locale/ar/LC_MESSAGES/djangojs.mo
jet/locale/ar/LC_MESSAGES/djangojs.po
jet/locale/cs/LC_MESSAGES/django.mo
jet/locale/cs/LC_MESSAGES/django.po
jet/locale/cs/LC_MESSAGES/djangojs.mo
jet/locale/cs/LC_MESSAGES/djangojs.po
jet/locale/de/LC_MESSAGES/django.mo
jet/locale/de/LC_MESSAGES/django.po
jet/locale/de/LC_MESSAGES/djangojs.mo
jet/locale/de/LC_MESSAGES/djangojs.po
jet/locale/en/LC_MESSAGES/django.mo
jet/locale/en/LC_MESSAGES/django.po
jet/locale/en/LC_MESSAGES/djangojs.mo
jet/locale/en/LC_MESSAGES/djangojs.po
jet/locale/es/LC_MESSAGES/django.mo
jet/locale/es/LC_MESSAGES/django.po
jet/locale/es/LC_MESSAGES/djangojs.mo
jet/locale/es/LC_MESSAGES/djangojs.po
jet/locale/fa/LC_MESSAGES/django.po
jet/locale/fa/LC_MESSAGES/djangojs.po
jet/locale/fr/LC_MESSAGES/django.po
jet/locale/fr/LC_MESSAGES/djangojs.po
jet/locale/pl/LC_MESSAGES/django.mo
jet/locale/pl/LC_MESSAGES/django.po
jet/locale/pl/LC_MESSAGES/djangojs.mo
jet/locale/pl/LC_MESSAGES/djangojs.po
jet/locale/pt_BR/LC_MESSAGES/django.mo
jet/locale/pt_BR/LC_MESSAGES/django.po
jet/locale/pt_BR/LC_MESSAGES/djangojs.mo
jet/locale/pt_BR/LC_MESSAGES/djangojs.po
jet/locale/ru/LC_MESSAGES/django.mo
jet/locale/ru/LC_MESSAGES/django.po
jet/locale/ru/LC_MESSAGES/djangojs.mo
jet/locale/ru/LC_MESSAGES/djangojs.po
jet/locale/zh_cn/LC_MESSAGES/django.mo
jet/locale/zh_cn/LC_MESSAGES/django.po
jet/management/__init__.py
jet/management/commands/__init__.py
jet/management/commands/jet_custom_apps_example.py
jet/management/commands/jet_side_menu_items_example.py
jet/migrations/0001_initial.py
jet/migrations/0002_delete_userdashboardmodule.py
jet/migrations/__init__.py
jet/south_migrations/0001_initial.py
jet/south_migrations/0002_auto__del_userdashboardmodule.py
jet/south_migrations/__init__.py
jet/static/admin/css/base.css
jet/static/admin/css/changelists.css
jet/static/admin/css/dashboard.css
jet/static/admin/css/fonts.css
jet/static/admin/css/forms.css
jet/static/admin/css/login.css
jet/static/admin/css/rtl.css
jet/static/admin/css/widgets.css
jet/static/admin/js/SelectFilter2.js
jet/static/admin/js/related-widget-wrapper.js
jet/static/admin/js/admin/DateTimeShortcuts.js
jet/static/admin/js/admin/RelatedObjectLookups.js
jet/static/jet/css/_base.scss
jet/static/jet/css/_breadcrumbs.scss
jet/static/jet/css/_changeform.scss
jet/static/jet/css/_changelist.scss
jet/static/jet/css/_content.scss
jet/static/jet/css/_dashboard.scss
jet/static/jet/css/_delete-confirmation.scss
jet/static/jet/css/_forms.scss
jet/static/jet/css/_globals.scss
jet/static/jet/css/_header.scss
jet/static/jet/css/_helpers.scss
jet/static/jet/css/_login.scss
jet/static/jet/css/_messages.scss
jet/static/jet/css/_modules.scss
jet/static/jet/css/_object-tools.scss
jet/static/jet/css/_relatedpopup.scss
jet/static/jet/css/_sidebar.scss
jet/static/jet/css/_tables.scss
jet/static/jet/css/_variables.scss
jet/static/jet/css/vendor.css
jet/static/jet/css/icons/_variables.scss
jet/static/jet/css/icons/style.css
jet/static/jet/css/icons/fonts/jet-icons.eot
jet/static/jet/css/icons/fonts/jet-icons.svg
jet/static/jet/css/icons/fonts/jet-icons.ttf
jet/static/jet/css/icons/fonts/jet-icons.woff
jet/static/jet/css/jquery-ui/_jquery-ui.theme.scss
jet/static/jet/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png
jet/static/jet/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png
jet/static/jet/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png
jet/static/jet/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png
jet/static/jet/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png
jet/static/jet/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png
jet/static/jet/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png
jet/static/jet/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
jet/static/jet/css/jquery-ui/images/ui-icons_222222_256x240.png
jet/static/jet/css/jquery-ui/images/ui-icons_2e83ff_256x240.png
jet/static/jet/css/jquery-ui/images/ui-icons_454545_256x240.png
jet/static/jet/css/jquery-ui/images/ui-icons_888888_256x240.png
jet/static/jet/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png
jet/static/jet/css/select2/_layout.scss
jet/static/jet/css/select2/_multiple.scss
jet/static/jet/css/select2/_single.scss
jet/static/jet/css/themes/default/_variables.scss
jet/static/jet/css/themes/default/base.css
jet/static/jet/css/themes/default/base.css.map
jet/static/jet/css/themes/default/base.scss
jet/static/jet/css/themes/default/jquery-ui.theme.css
jet/static/jet/css/themes/default/jquery-ui.theme.css.map
jet/static/jet/css/themes/default/jquery-ui.theme.scss
jet/static/jet/css/themes/default/select2.theme.css
jet/static/jet/css/themes/default/select2.theme.css.map
jet/static/jet/css/themes/default/select2.theme.scss
jet/static/jet/css/themes/green/_variables.scss
jet/static/jet/css/themes/green/base.css
jet/static/jet/css/themes/green/base.css.map
jet/static/jet/css/themes/green/base.scss
jet/static/jet/css/themes/green/jquery-ui.theme.css
jet/static/jet/css/themes/green/jquery-ui.theme.css.map
jet/static/jet/css/themes/green/jquery-ui.theme.scss
jet/static/jet/css/themes/green/select2.theme.css
jet/static/jet/css/themes/green/select2.theme.css.map
jet/static/jet/css/themes/green/select2.theme.scss
jet/static/jet/css/themes/light-blue/_variables.scss
jet/static/jet/css/themes/light-blue/base.css
jet/static/jet/css/themes/light-blue/base.css.map
jet/static/jet/css/themes/light-blue/base.scss
jet/static/jet/css/themes/light-blue/jquery-ui.theme.css
jet/static/jet/css/themes/light-blue/jquery-ui.theme.css.map
jet/static/jet/css/themes/light-blue/jquery-ui.theme.scss
jet/static/jet/css/themes/light-blue/select2.theme.css
jet/static/jet/css/themes/light-blue/select2.theme.css.map
jet/static/jet/css/themes/light-blue/select2.theme.scss
jet/static/jet/css/themes/light-gray/_variables.scss
jet/static/jet/css/themes/light-gray/base.css
jet/static/jet/css/themes/light-gray/base.css.map
jet/static/jet/css/themes/light-gray/base.scss
jet/static/jet/css/themes/light-gray/jquery-ui.theme.css
jet/static/jet/css/themes/light-gray/jquery-ui.theme.css.map
jet/static/jet/css/themes/light-gray/jquery-ui.theme.scss
jet/static/jet/css/themes/light-gray/select2.theme.css
jet/static/jet/css/themes/light-gray/select2.theme.css.map
jet/static/jet/css/themes/light-gray/select2.theme.scss
jet/static/jet/css/themes/light-green/_variables.scss
jet/static/jet/css/themes/light-green/base.css
jet/static/jet/css/themes/light-green/base.css.map
jet/static/jet/css/themes/light-green/base.scss
jet/static/jet/css/themes/light-green/jquery-ui.theme.css
jet/static/jet/css/themes/light-green/jquery-ui.theme.css.map
jet/static/jet/css/themes/light-green/jquery-ui.theme.scss
jet/static/jet/css/themes/light-green/select2.theme.css
jet/static/jet/css/themes/light-green/select2.theme.css.map
jet/static/jet/css/themes/light-green/select2.theme.scss
jet/static/jet/css/themes/light-violet/_variables.scss
jet/static/jet/css/themes/light-violet/base.css
jet/static/jet/css/themes/light-violet/base.css.map
jet/static/jet/css/themes/light-violet/base.scss
jet/static/jet/css/themes/light-violet/jquery-ui.theme.css
jet/static/jet/css/themes/light-violet/jquery-ui.theme.css.map
jet/static/jet/css/themes/light-violet/jquery-ui.theme.scss
jet/static/jet/css/themes/light-violet/select2.theme.css
jet/static/jet/css/themes/light-violet/select2.theme.css.map
jet/static/jet/css/themes/light-violet/select2.theme.scss
jet/static/jet/js/build/bundle.min.js
jet/static/jet/js/i18n/jquery-ui/datepicker-af.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ar-DZ.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ar.js
jet/static/jet/js/i18n/jquery-ui/datepicker-az.js
jet/static/jet/js/i18n/jquery-ui/datepicker-be.js
jet/static/jet/js/i18n/jquery-ui/datepicker-bg.js
jet/static/jet/js/i18n/jquery-ui/datepicker-bs.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ca.js
jet/static/jet/js/i18n/jquery-ui/datepicker-cs.js
jet/static/jet/js/i18n/jquery-ui/datepicker-cy-GB.js
jet/static/jet/js/i18n/jquery-ui/datepicker-da.js
jet/static/jet/js/i18n/jquery-ui/datepicker-de.js
jet/static/jet/js/i18n/jquery-ui/datepicker-el.js
jet/static/jet/js/i18n/jquery-ui/datepicker-en-AU.js
jet/static/jet/js/i18n/jquery-ui/datepicker-en-GB.js
jet/static/jet/js/i18n/jquery-ui/datepicker-en-NZ.js
jet/static/jet/js/i18n/jquery-ui/datepicker-eo.js
jet/static/jet/js/i18n/jquery-ui/datepicker-es.js
jet/static/jet/js/i18n/jquery-ui/datepicker-et.js
jet/static/jet/js/i18n/jquery-ui/datepicker-eu.js
jet/static/jet/js/i18n/jquery-ui/datepicker-fa.js
jet/static/jet/js/i18n/jquery-ui/datepicker-fi.js
jet/static/jet/js/i18n/jquery-ui/datepicker-fo.js
jet/static/jet/js/i18n/jquery-ui/datepicker-fr-CA.js
jet/static/jet/js/i18n/jquery-ui/datepicker-fr-CH.js
jet/static/jet/js/i18n/jquery-ui/datepicker-fr.js
jet/static/jet/js/i18n/jquery-ui/datepicker-gl.js
jet/static/jet/js/i18n/jquery-ui/datepicker-he.js
jet/static/jet/js/i18n/jquery-ui/datepicker-hi.js
jet/static/jet/js/i18n/jquery-ui/datepicker-hr.js
jet/static/jet/js/i18n/jquery-ui/datepicker-hu.js
jet/static/jet/js/i18n/jquery-ui/datepicker-hy.js
jet/static/jet/js/i18n/jquery-ui/datepicker-id.js
jet/static/jet/js/i18n/jquery-ui/datepicker-is.js
jet/static/jet/js/i18n/jquery-ui/datepicker-it-CH.js
jet/static/jet/js/i18n/jquery-ui/datepicker-it.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ja.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ka.js
jet/static/jet/js/i18n/jquery-ui/datepicker-kk.js
jet/static/jet/js/i18n/jquery-ui/datepicker-km.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ko.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ky.js
jet/static/jet/js/i18n/jquery-ui/datepicker-lb.js
jet/static/jet/js/i18n/jquery-ui/datepicker-lt.js
jet/static/jet/js/i18n/jquery-ui/datepicker-lv.js
jet/static/jet/js/i18n/jquery-ui/datepicker-mk.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ml.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ms.js
jet/static/jet/js/i18n/jquery-ui/datepicker-nb.js
jet/static/jet/js/i18n/jquery-ui/datepicker-nl-BE.js
jet/static/jet/js/i18n/jquery-ui/datepicker-nl.js
jet/static/jet/js/i18n/jquery-ui/datepicker-nn.js
jet/static/jet/js/i18n/jquery-ui/datepicker-no.js
jet/static/jet/js/i18n/jquery-ui/datepicker-pl.js
jet/static/jet/js/i18n/jquery-ui/datepicker-pt-BR.js
jet/static/jet/js/i18n/jquery-ui/datepicker-pt.js
jet/static/jet/js/i18n/jquery-ui/datepicker-rm.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ro.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ru.js
jet/static/jet/js/i18n/jquery-ui/datepicker-sk.js
jet/static/jet/js/i18n/jquery-ui/datepicker-sl.js
jet/static/jet/js/i18n/jquery-ui/datepicker-sq.js
jet/static/jet/js/i18n/jquery-ui/datepicker-sr-SR.js
jet/static/jet/js/i18n/jquery-ui/datepicker-sr.js
jet/static/jet/js/i18n/jquery-ui/datepicker-sv.js
jet/static/jet/js/i18n/jquery-ui/datepicker-ta.js
jet/static/jet/js/i18n/jquery-ui/datepicker-th.js
jet/static/jet/js/i18n/jquery-ui/datepicker-tj.js
jet/static/jet/js/i18n/jquery-ui/datepicker-tr.js
jet/static/jet/js/i18n/jquery-ui/datepicker-uk.js
jet/static/jet/js/i18n/jquery-ui/datepicker-vi.js
jet/static/jet/js/i18n/jquery-ui/datepicker-zh-CN.js
jet/static/jet/js/i18n/jquery-ui/datepicker-zh-HK.js
jet/static/jet/js/i18n/jquery-ui/datepicker-zh-TW.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-cs.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-de.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-es.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-fr.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-hr.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-hu.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-it.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-ja.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-mk.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-nl.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-pl.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-pt-BR.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-ru.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-sl.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-sv.js
jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-tr.js
jet/static/jet/js/i18n/select2/az.js
jet/static/jet/js/i18n/select2/bg.js
jet/static/jet/js/i18n/select2/ca.js
jet/static/jet/js/i18n/select2/cs.js
jet/static/jet/js/i18n/select2/da.js
jet/static/jet/js/i18n/select2/de.js
jet/static/jet/js/i18n/select2/en.js
jet/static/jet/js/i18n/select2/es.js
jet/static/jet/js/i18n/select2/et.js
jet/static/jet/js/i18n/select2/eu.js
jet/static/jet/js/i18n/select2/fa.js
jet/static/jet/js/i18n/select2/fi.js
jet/static/jet/js/i18n/select2/fr.js
jet/static/jet/js/i18n/select2/gl.js
jet/static/jet/js/i18n/select2/he.js
jet/static/jet/js/i18n/select2/hi.js
jet/static/jet/js/i18n/select2/hr.js
jet/static/jet/js/i18n/select2/hu.js
jet/static/jet/js/i18n/select2/id.js
jet/static/jet/js/i18n/select2/is.js
jet/static/jet/js/i18n/select2/it.js
jet/static/jet/js/i18n/select2/ko.js
jet/static/jet/js/i18n/select2/lt.js
jet/static/jet/js/i18n/select2/lv.js
jet/static/jet/js/i18n/select2/mk.js
jet/static/jet/js/i18n/select2/nb.js
jet/static/jet/js/i18n/select2/nl.js
jet/static/jet/js/i18n/select2/pl.js
jet/static/jet/js/i18n/select2/pt-BR.js
jet/static/jet/js/i18n/select2/pt.js
jet/static/jet/js/i18n/select2/ro.js
jet/static/jet/js/i18n/select2/ru.js
jet/static/jet/js/i18n/select2/sk.js
jet/static/jet/js/i18n/select2/sr.js
jet/static/jet/js/i18n/select2/sv.js
jet/static/jet/js/i18n/select2/th.js
jet/static/jet/js/i18n/select2/tr.js
jet/static/jet/js/i18n/select2/uk.js
jet/static/jet/js/i18n/select2/vi.js
jet/static/jet/js/i18n/select2/zh-CN.js
jet/static/jet/js/i18n/select2/zh-TW.js
jet/static/jet/js/src/main.js
jet/static/jet/js/src/features/changeform-tabs.js
jet/static/jet/js/src/features/changeform.js
jet/static/jet/js/src/features/changelist.js
jet/static/jet/js/src/features/checkboxes.js
jet/static/jet/js/src/features/compact-inline.js
jet/static/jet/js/src/features/dashboard.js
jet/static/jet/js/src/features/date-time-widgets.js
jet/static/jet/js/src/features/filters.js
jet/static/jet/js/src/features/inlines.js
jet/static/jet/js/src/features/related-popups.js
jet/static/jet/js/src/features/scroll-to-bottom-detector.js
jet/static/jet/js/src/features/selects.js
jet/static/jet/js/src/features/siblings.js
jet/static/jet/js/src/features/themes.js
jet/static/jet/js/src/features/tooltips.js
jet/static/jet/js/src/features/touchmove-non-scrollable.js
jet/static/jet/js/src/features/sidebar/application-pinning.js
jet/static/jet/js/src/features/sidebar/bookmarks.js
jet/static/jet/js/src/features/sidebar/main.js
jet/static/jet/js/src/features/sidebar/popup.js
jet/static/jet/js/src/layout-updaters/actions.js
jet/static/jet/js/src/layout-updaters/branding.js
jet/static/jet/js/src/layout-updaters/breadcrumbs.js
jet/static/jet/js/src/layout-updaters/changeform-tabs.js
jet/static/jet/js/src/layout-updaters/delete-confirmation.js
jet/static/jet/js/src/layout-updaters/icons.js
jet/static/jet/js/src/layout-updaters/object-tools.js
jet/static/jet/js/src/layout-updaters/paginator.js
jet/static/jet/js/src/layout-updaters/related-widget-wrapper.js
jet/static/jet/js/src/layout-updaters/stacked-inline.js
jet/static/jet/js/src/layout-updaters/tabular-inline.js
jet/static/jet/js/src/layout-updaters/toolbar.js
jet/static/jet/js/src/layout-updaters/user-tools.js
jet/static/jet/js/src/utils/jquery-icontains.js
jet/static/jet/js/src/utils/jquery-slidefade.js
jet/static/jet/js/src/utils/translate.js
jet/static/jet/js/src/utils/window-storage.js
jet/static/range_filter/css/style.css
jet/templates/admin/base.html
jet/templates/admin/popup_response.html
jet/templates/admin/edit_inline/compact.html
jet/templates/admin/includes/fieldset.html
jet/templates/jet/related_field_ajax_list_filter.html
jet/templates/rangefilter/date_filter.html
jet/templatetags/__init__.py
jet/templatetags/jet_tags.py
jet/tests/__init__.py
jet/tests/admin.py
jet/tests/dashboard.py
jet/tests/models.py
jet/tests/settings.py
jet/tests/test_dashboard.py
jet/tests/test_filters.py
jet/tests/test_ordered_set.py
jet/tests/test_tags.py
jet/tests/test_utils.py
jet/tests/test_views.py
jet/tests/urls.py

View File

@@ -0,0 +1,505 @@
../jet/__init__.py
../jet/__pycache__/__init__.cpython-310.pyc
../jet/__pycache__/admin.cpython-310.pyc
../jet/__pycache__/filters.cpython-310.pyc
../jet/__pycache__/forms.cpython-310.pyc
../jet/__pycache__/models.cpython-310.pyc
../jet/__pycache__/ordered_set.cpython-310.pyc
../jet/__pycache__/settings.cpython-310.pyc
../jet/__pycache__/urls.cpython-310.pyc
../jet/__pycache__/utils.cpython-310.pyc
../jet/__pycache__/views.cpython-310.pyc
../jet/admin.py
../jet/dashboard/__init__.py
../jet/dashboard/__pycache__/__init__.cpython-310.pyc
../jet/dashboard/__pycache__/dashboard.cpython-310.pyc
../jet/dashboard/__pycache__/forms.cpython-310.pyc
../jet/dashboard/__pycache__/models.cpython-310.pyc
../jet/dashboard/__pycache__/modules.cpython-310.pyc
../jet/dashboard/__pycache__/settings.cpython-310.pyc
../jet/dashboard/__pycache__/urls.cpython-310.pyc
../jet/dashboard/__pycache__/utils.cpython-310.pyc
../jet/dashboard/__pycache__/views.cpython-310.pyc
../jet/dashboard/dashboard.py
../jet/dashboard/dashboard_modules/__init__.py
../jet/dashboard/dashboard_modules/__pycache__/__init__.cpython-310.pyc
../jet/dashboard/dashboard_modules/__pycache__/google_analytics.cpython-310.pyc
../jet/dashboard/dashboard_modules/__pycache__/google_analytics_views.cpython-310.pyc
../jet/dashboard/dashboard_modules/__pycache__/yandex_metrika.cpython-310.pyc
../jet/dashboard/dashboard_modules/__pycache__/yandex_metrika_views.cpython-310.pyc
../jet/dashboard/dashboard_modules/google_analytics.py
../jet/dashboard/dashboard_modules/google_analytics_views.py
../jet/dashboard/dashboard_modules/yandex_metrika.py
../jet/dashboard/dashboard_modules/yandex_metrika_views.py
../jet/dashboard/forms.py
../jet/dashboard/locale/ar/LC_MESSAGES/django.mo
../jet/dashboard/locale/ar/LC_MESSAGES/django.po
../jet/dashboard/locale/ar/LC_MESSAGES/djangojs.mo
../jet/dashboard/locale/ar/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/cs/LC_MESSAGES/django.mo
../jet/dashboard/locale/cs/LC_MESSAGES/django.po
../jet/dashboard/locale/cs/LC_MESSAGES/djangojs.mo
../jet/dashboard/locale/cs/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/de/LC_MESSAGES/django.mo
../jet/dashboard/locale/de/LC_MESSAGES/django.po
../jet/dashboard/locale/de/LC_MESSAGES/djangojs.mo
../jet/dashboard/locale/de/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/en/LC_MESSAGES/django.mo
../jet/dashboard/locale/en/LC_MESSAGES/django.po
../jet/dashboard/locale/en/LC_MESSAGES/djangojs.mo
../jet/dashboard/locale/en/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/es/LC_MESSAGES/django.mo
../jet/dashboard/locale/es/LC_MESSAGES/django.po
../jet/dashboard/locale/es/LC_MESSAGES/djangojs.mo
../jet/dashboard/locale/es/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/fa/LC_MESSAGES/django.po
../jet/dashboard/locale/fa/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/fr/LC_MESSAGES/django.po
../jet/dashboard/locale/fr/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/pl/LC_MESSAGES/django.mo
../jet/dashboard/locale/pl/LC_MESSAGES/django.po
../jet/dashboard/locale/pt-br/LC_MESSAGES/django.mo
../jet/dashboard/locale/pt-br/LC_MESSAGES/django.po
../jet/dashboard/locale/pt-br/LC_MESSAGES/djangojs.mo
../jet/dashboard/locale/pt-br/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/ru/LC_MESSAGES/django.mo
../jet/dashboard/locale/ru/LC_MESSAGES/django.po
../jet/dashboard/locale/ru/LC_MESSAGES/djangojs.mo
../jet/dashboard/locale/ru/LC_MESSAGES/djangojs.po
../jet/dashboard/locale/zh_cn/LC_MESSAGES/django.mo
../jet/dashboard/locale/zh_cn/LC_MESSAGES/django.po
../jet/dashboard/migrations/0001_initial.py
../jet/dashboard/migrations/__init__.py
../jet/dashboard/migrations/__pycache__/0001_initial.cpython-310.pyc
../jet/dashboard/migrations/__pycache__/__init__.cpython-310.pyc
../jet/dashboard/models.py
../jet/dashboard/modules.py
../jet/dashboard/settings.py
../jet/dashboard/south_migrations/0001_initial.py
../jet/dashboard/south_migrations/__init__.py
../jet/dashboard/south_migrations/__pycache__/0001_initial.cpython-310.pyc
../jet/dashboard/south_migrations/__pycache__/__init__.cpython-310.pyc
../jet/dashboard/static/jet.dashboard/dashboard_modules/google_analytics.js
../jet/dashboard/static/jet.dashboard/dashboard_modules/yandex_metrika.js
../jet/dashboard/static/jet.dashboard/vendor/chart.js/CONTRIBUTING.md
../jet/dashboard/static/jet.dashboard/vendor/chart.js/Chart.js
../jet/dashboard/static/jet.dashboard/vendor/chart.js/Chart.min.js
../jet/dashboard/static/jet.dashboard/vendor/chart.js/LICENSE.md
../jet/dashboard/static/jet.dashboard/vendor/chart.js/README.md
../jet/dashboard/templates/admin/app_index.html
../jet/dashboard/templates/admin/index.html
../jet/dashboard/templates/jet.dashboard/dashboard.html
../jet/dashboard/templates/jet.dashboard/dashboard_tools.html
../jet/dashboard/templates/jet.dashboard/module.html
../jet/dashboard/templates/jet.dashboard/modules/app_list.html
../jet/dashboard/templates/jet.dashboard/modules/feed.html
../jet/dashboard/templates/jet.dashboard/modules/google_analytics_period_visitors.html
../jet/dashboard/templates/jet.dashboard/modules/google_analytics_visitors_chart.html
../jet/dashboard/templates/jet.dashboard/modules/google_analytics_visitors_totals.html
../jet/dashboard/templates/jet.dashboard/modules/link_list.html
../jet/dashboard/templates/jet.dashboard/modules/model_list.html
../jet/dashboard/templates/jet.dashboard/modules/recent_actions.html
../jet/dashboard/templates/jet.dashboard/modules/yandex_metrika_period_visitors.html
../jet/dashboard/templates/jet.dashboard/modules/yandex_metrika_visitors_chart.html
../jet/dashboard/templates/jet.dashboard/modules/yandex_metrika_visitors_totals.html
../jet/dashboard/templates/jet.dashboard/update_module.html
../jet/dashboard/templates/jet.dashboard/update_module_fieldset.html
../jet/dashboard/templatetags/__init__.py
../jet/dashboard/templatetags/__pycache__/__init__.cpython-310.pyc
../jet/dashboard/templatetags/__pycache__/jet_dashboard_tags.cpython-310.pyc
../jet/dashboard/templatetags/jet_dashboard_tags.py
../jet/dashboard/urls.py
../jet/dashboard/utils.py
../jet/dashboard/views.py
../jet/filters.py
../jet/forms.py
../jet/locale/ar/LC_MESSAGES/django.mo
../jet/locale/ar/LC_MESSAGES/django.po
../jet/locale/ar/LC_MESSAGES/djangojs.mo
../jet/locale/ar/LC_MESSAGES/djangojs.po
../jet/locale/cs/LC_MESSAGES/django.mo
../jet/locale/cs/LC_MESSAGES/django.po
../jet/locale/cs/LC_MESSAGES/djangojs.mo
../jet/locale/cs/LC_MESSAGES/djangojs.po
../jet/locale/de/LC_MESSAGES/django.mo
../jet/locale/de/LC_MESSAGES/django.po
../jet/locale/de/LC_MESSAGES/djangojs.mo
../jet/locale/de/LC_MESSAGES/djangojs.po
../jet/locale/en/LC_MESSAGES/django.mo
../jet/locale/en/LC_MESSAGES/django.po
../jet/locale/en/LC_MESSAGES/djangojs.mo
../jet/locale/en/LC_MESSAGES/djangojs.po
../jet/locale/es/LC_MESSAGES/django.mo
../jet/locale/es/LC_MESSAGES/django.po
../jet/locale/es/LC_MESSAGES/djangojs.mo
../jet/locale/es/LC_MESSAGES/djangojs.po
../jet/locale/fa/LC_MESSAGES/django.po
../jet/locale/fa/LC_MESSAGES/djangojs.po
../jet/locale/fr/LC_MESSAGES/django.po
../jet/locale/fr/LC_MESSAGES/djangojs.po
../jet/locale/pl/LC_MESSAGES/django.mo
../jet/locale/pl/LC_MESSAGES/django.po
../jet/locale/pl/LC_MESSAGES/djangojs.mo
../jet/locale/pl/LC_MESSAGES/djangojs.po
../jet/locale/pt_BR/LC_MESSAGES/django.mo
../jet/locale/pt_BR/LC_MESSAGES/django.po
../jet/locale/pt_BR/LC_MESSAGES/djangojs.mo
../jet/locale/pt_BR/LC_MESSAGES/djangojs.po
../jet/locale/ru/LC_MESSAGES/django.mo
../jet/locale/ru/LC_MESSAGES/django.po
../jet/locale/ru/LC_MESSAGES/djangojs.mo
../jet/locale/ru/LC_MESSAGES/djangojs.po
../jet/locale/zh_cn/LC_MESSAGES/django.mo
../jet/locale/zh_cn/LC_MESSAGES/django.po
../jet/management/__init__.py
../jet/management/__pycache__/__init__.cpython-310.pyc
../jet/management/commands/__init__.py
../jet/management/commands/__pycache__/__init__.cpython-310.pyc
../jet/management/commands/__pycache__/jet_custom_apps_example.cpython-310.pyc
../jet/management/commands/__pycache__/jet_side_menu_items_example.cpython-310.pyc
../jet/management/commands/jet_custom_apps_example.py
../jet/management/commands/jet_side_menu_items_example.py
../jet/migrations/0001_initial.py
../jet/migrations/0002_delete_userdashboardmodule.py
../jet/migrations/__init__.py
../jet/migrations/__pycache__/0001_initial.cpython-310.pyc
../jet/migrations/__pycache__/0002_delete_userdashboardmodule.cpython-310.pyc
../jet/migrations/__pycache__/__init__.cpython-310.pyc
../jet/models.py
../jet/ordered_set.py
../jet/settings.py
../jet/south_migrations/0001_initial.py
../jet/south_migrations/0002_auto__del_userdashboardmodule.py
../jet/south_migrations/__init__.py
../jet/south_migrations/__pycache__/0001_initial.cpython-310.pyc
../jet/south_migrations/__pycache__/0002_auto__del_userdashboardmodule.cpython-310.pyc
../jet/south_migrations/__pycache__/__init__.cpython-310.pyc
../jet/static/admin/css/base.css
../jet/static/admin/css/changelists.css
../jet/static/admin/css/dashboard.css
../jet/static/admin/css/fonts.css
../jet/static/admin/css/forms.css
../jet/static/admin/css/login.css
../jet/static/admin/css/rtl.css
../jet/static/admin/css/widgets.css
../jet/static/admin/js/SelectFilter2.js
../jet/static/admin/js/admin/DateTimeShortcuts.js
../jet/static/admin/js/admin/RelatedObjectLookups.js
../jet/static/admin/js/related-widget-wrapper.js
../jet/static/jet/css/_base.scss
../jet/static/jet/css/_breadcrumbs.scss
../jet/static/jet/css/_changeform.scss
../jet/static/jet/css/_changelist.scss
../jet/static/jet/css/_content.scss
../jet/static/jet/css/_dashboard.scss
../jet/static/jet/css/_delete-confirmation.scss
../jet/static/jet/css/_forms.scss
../jet/static/jet/css/_globals.scss
../jet/static/jet/css/_header.scss
../jet/static/jet/css/_helpers.scss
../jet/static/jet/css/_login.scss
../jet/static/jet/css/_messages.scss
../jet/static/jet/css/_modules.scss
../jet/static/jet/css/_object-tools.scss
../jet/static/jet/css/_relatedpopup.scss
../jet/static/jet/css/_sidebar.scss
../jet/static/jet/css/_tables.scss
../jet/static/jet/css/_variables.scss
../jet/static/jet/css/icons/_variables.scss
../jet/static/jet/css/icons/fonts/jet-icons.eot
../jet/static/jet/css/icons/fonts/jet-icons.svg
../jet/static/jet/css/icons/fonts/jet-icons.ttf
../jet/static/jet/css/icons/fonts/jet-icons.woff
../jet/static/jet/css/icons/style.css
../jet/static/jet/css/jquery-ui/_jquery-ui.theme.scss
../jet/static/jet/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png
../jet/static/jet/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png
../jet/static/jet/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png
../jet/static/jet/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png
../jet/static/jet/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png
../jet/static/jet/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png
../jet/static/jet/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png
../jet/static/jet/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
../jet/static/jet/css/jquery-ui/images/ui-icons_222222_256x240.png
../jet/static/jet/css/jquery-ui/images/ui-icons_2e83ff_256x240.png
../jet/static/jet/css/jquery-ui/images/ui-icons_454545_256x240.png
../jet/static/jet/css/jquery-ui/images/ui-icons_888888_256x240.png
../jet/static/jet/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png
../jet/static/jet/css/select2/_layout.scss
../jet/static/jet/css/select2/_multiple.scss
../jet/static/jet/css/select2/_single.scss
../jet/static/jet/css/themes/default/_variables.scss
../jet/static/jet/css/themes/default/base.css
../jet/static/jet/css/themes/default/base.css.map
../jet/static/jet/css/themes/default/base.scss
../jet/static/jet/css/themes/default/jquery-ui.theme.css
../jet/static/jet/css/themes/default/jquery-ui.theme.css.map
../jet/static/jet/css/themes/default/jquery-ui.theme.scss
../jet/static/jet/css/themes/default/select2.theme.css
../jet/static/jet/css/themes/default/select2.theme.css.map
../jet/static/jet/css/themes/default/select2.theme.scss
../jet/static/jet/css/themes/green/_variables.scss
../jet/static/jet/css/themes/green/base.css
../jet/static/jet/css/themes/green/base.css.map
../jet/static/jet/css/themes/green/base.scss
../jet/static/jet/css/themes/green/jquery-ui.theme.css
../jet/static/jet/css/themes/green/jquery-ui.theme.css.map
../jet/static/jet/css/themes/green/jquery-ui.theme.scss
../jet/static/jet/css/themes/green/select2.theme.css
../jet/static/jet/css/themes/green/select2.theme.css.map
../jet/static/jet/css/themes/green/select2.theme.scss
../jet/static/jet/css/themes/light-blue/_variables.scss
../jet/static/jet/css/themes/light-blue/base.css
../jet/static/jet/css/themes/light-blue/base.css.map
../jet/static/jet/css/themes/light-blue/base.scss
../jet/static/jet/css/themes/light-blue/jquery-ui.theme.css
../jet/static/jet/css/themes/light-blue/jquery-ui.theme.css.map
../jet/static/jet/css/themes/light-blue/jquery-ui.theme.scss
../jet/static/jet/css/themes/light-blue/select2.theme.css
../jet/static/jet/css/themes/light-blue/select2.theme.css.map
../jet/static/jet/css/themes/light-blue/select2.theme.scss
../jet/static/jet/css/themes/light-gray/_variables.scss
../jet/static/jet/css/themes/light-gray/base.css
../jet/static/jet/css/themes/light-gray/base.css.map
../jet/static/jet/css/themes/light-gray/base.scss
../jet/static/jet/css/themes/light-gray/jquery-ui.theme.css
../jet/static/jet/css/themes/light-gray/jquery-ui.theme.css.map
../jet/static/jet/css/themes/light-gray/jquery-ui.theme.scss
../jet/static/jet/css/themes/light-gray/select2.theme.css
../jet/static/jet/css/themes/light-gray/select2.theme.css.map
../jet/static/jet/css/themes/light-gray/select2.theme.scss
../jet/static/jet/css/themes/light-green/_variables.scss
../jet/static/jet/css/themes/light-green/base.css
../jet/static/jet/css/themes/light-green/base.css.map
../jet/static/jet/css/themes/light-green/base.scss
../jet/static/jet/css/themes/light-green/jquery-ui.theme.css
../jet/static/jet/css/themes/light-green/jquery-ui.theme.css.map
../jet/static/jet/css/themes/light-green/jquery-ui.theme.scss
../jet/static/jet/css/themes/light-green/select2.theme.css
../jet/static/jet/css/themes/light-green/select2.theme.css.map
../jet/static/jet/css/themes/light-green/select2.theme.scss
../jet/static/jet/css/themes/light-violet/_variables.scss
../jet/static/jet/css/themes/light-violet/base.css
../jet/static/jet/css/themes/light-violet/base.css.map
../jet/static/jet/css/themes/light-violet/base.scss
../jet/static/jet/css/themes/light-violet/jquery-ui.theme.css
../jet/static/jet/css/themes/light-violet/jquery-ui.theme.css.map
../jet/static/jet/css/themes/light-violet/jquery-ui.theme.scss
../jet/static/jet/css/themes/light-violet/select2.theme.css
../jet/static/jet/css/themes/light-violet/select2.theme.css.map
../jet/static/jet/css/themes/light-violet/select2.theme.scss
../jet/static/jet/css/vendor.css
../jet/static/jet/js/build/bundle.min.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-cs.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-de.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-es.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-fr.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-hr.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-hu.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-it.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-ja.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-mk.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-nl.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-pl.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-pt-BR.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-ru.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-sl.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-sv.js
../jet/static/jet/js/i18n/jquery-ui-timepicker/jquery.ui.timepicker-tr.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-af.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ar-DZ.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ar.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-az.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-be.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-bg.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-bs.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ca.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-cs.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-cy-GB.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-da.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-de.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-el.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-en-AU.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-en-GB.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-en-NZ.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-eo.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-es.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-et.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-eu.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-fa.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-fi.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-fo.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-fr-CA.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-fr-CH.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-fr.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-gl.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-he.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-hi.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-hr.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-hu.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-hy.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-id.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-is.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-it-CH.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-it.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ja.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ka.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-kk.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-km.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ko.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ky.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-lb.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-lt.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-lv.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-mk.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ml.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ms.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-nb.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-nl-BE.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-nl.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-nn.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-no.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-pl.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-pt-BR.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-pt.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-rm.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ro.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ru.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-sk.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-sl.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-sq.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-sr-SR.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-sr.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-sv.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-ta.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-th.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-tj.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-tr.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-uk.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-vi.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-zh-CN.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-zh-HK.js
../jet/static/jet/js/i18n/jquery-ui/datepicker-zh-TW.js
../jet/static/jet/js/i18n/select2/az.js
../jet/static/jet/js/i18n/select2/bg.js
../jet/static/jet/js/i18n/select2/ca.js
../jet/static/jet/js/i18n/select2/cs.js
../jet/static/jet/js/i18n/select2/da.js
../jet/static/jet/js/i18n/select2/de.js
../jet/static/jet/js/i18n/select2/en.js
../jet/static/jet/js/i18n/select2/es.js
../jet/static/jet/js/i18n/select2/et.js
../jet/static/jet/js/i18n/select2/eu.js
../jet/static/jet/js/i18n/select2/fa.js
../jet/static/jet/js/i18n/select2/fi.js
../jet/static/jet/js/i18n/select2/fr.js
../jet/static/jet/js/i18n/select2/gl.js
../jet/static/jet/js/i18n/select2/he.js
../jet/static/jet/js/i18n/select2/hi.js
../jet/static/jet/js/i18n/select2/hr.js
../jet/static/jet/js/i18n/select2/hu.js
../jet/static/jet/js/i18n/select2/id.js
../jet/static/jet/js/i18n/select2/is.js
../jet/static/jet/js/i18n/select2/it.js
../jet/static/jet/js/i18n/select2/ko.js
../jet/static/jet/js/i18n/select2/lt.js
../jet/static/jet/js/i18n/select2/lv.js
../jet/static/jet/js/i18n/select2/mk.js
../jet/static/jet/js/i18n/select2/nb.js
../jet/static/jet/js/i18n/select2/nl.js
../jet/static/jet/js/i18n/select2/pl.js
../jet/static/jet/js/i18n/select2/pt-BR.js
../jet/static/jet/js/i18n/select2/pt.js
../jet/static/jet/js/i18n/select2/ro.js
../jet/static/jet/js/i18n/select2/ru.js
../jet/static/jet/js/i18n/select2/sk.js
../jet/static/jet/js/i18n/select2/sr.js
../jet/static/jet/js/i18n/select2/sv.js
../jet/static/jet/js/i18n/select2/th.js
../jet/static/jet/js/i18n/select2/tr.js
../jet/static/jet/js/i18n/select2/uk.js
../jet/static/jet/js/i18n/select2/vi.js
../jet/static/jet/js/i18n/select2/zh-CN.js
../jet/static/jet/js/i18n/select2/zh-TW.js
../jet/static/jet/js/src/features/changeform-tabs.js
../jet/static/jet/js/src/features/changeform.js
../jet/static/jet/js/src/features/changelist.js
../jet/static/jet/js/src/features/checkboxes.js
../jet/static/jet/js/src/features/compact-inline.js
../jet/static/jet/js/src/features/dashboard.js
../jet/static/jet/js/src/features/date-time-widgets.js
../jet/static/jet/js/src/features/filters.js
../jet/static/jet/js/src/features/inlines.js
../jet/static/jet/js/src/features/related-popups.js
../jet/static/jet/js/src/features/scroll-to-bottom-detector.js
../jet/static/jet/js/src/features/selects.js
../jet/static/jet/js/src/features/siblings.js
../jet/static/jet/js/src/features/sidebar/application-pinning.js
../jet/static/jet/js/src/features/sidebar/bookmarks.js
../jet/static/jet/js/src/features/sidebar/main.js
../jet/static/jet/js/src/features/sidebar/popup.js
../jet/static/jet/js/src/features/themes.js
../jet/static/jet/js/src/features/tooltips.js
../jet/static/jet/js/src/features/touchmove-non-scrollable.js
../jet/static/jet/js/src/layout-updaters/actions.js
../jet/static/jet/js/src/layout-updaters/branding.js
../jet/static/jet/js/src/layout-updaters/breadcrumbs.js
../jet/static/jet/js/src/layout-updaters/changeform-tabs.js
../jet/static/jet/js/src/layout-updaters/delete-confirmation.js
../jet/static/jet/js/src/layout-updaters/icons.js
../jet/static/jet/js/src/layout-updaters/object-tools.js
../jet/static/jet/js/src/layout-updaters/paginator.js
../jet/static/jet/js/src/layout-updaters/related-widget-wrapper.js
../jet/static/jet/js/src/layout-updaters/stacked-inline.js
../jet/static/jet/js/src/layout-updaters/tabular-inline.js
../jet/static/jet/js/src/layout-updaters/toolbar.js
../jet/static/jet/js/src/layout-updaters/user-tools.js
../jet/static/jet/js/src/main.js
../jet/static/jet/js/src/utils/jquery-icontains.js
../jet/static/jet/js/src/utils/jquery-slidefade.js
../jet/static/jet/js/src/utils/translate.js
../jet/static/jet/js/src/utils/window-storage.js
../jet/static/range_filter/css/style.css
../jet/templates/admin/base.html
../jet/templates/admin/edit_inline/compact.html
../jet/templates/admin/includes/fieldset.html
../jet/templates/admin/popup_response.html
../jet/templates/jet/related_field_ajax_list_filter.html
../jet/templates/rangefilter/date_filter.html
../jet/templatetags/__init__.py
../jet/templatetags/__pycache__/__init__.cpython-310.pyc
../jet/templatetags/__pycache__/jet_tags.cpython-310.pyc
../jet/templatetags/jet_tags.py
../jet/tests/__init__.py
../jet/tests/__pycache__/__init__.cpython-310.pyc
../jet/tests/__pycache__/admin.cpython-310.pyc
../jet/tests/__pycache__/dashboard.cpython-310.pyc
../jet/tests/__pycache__/models.cpython-310.pyc
../jet/tests/__pycache__/settings.cpython-310.pyc
../jet/tests/__pycache__/test_dashboard.cpython-310.pyc
../jet/tests/__pycache__/test_filters.cpython-310.pyc
../jet/tests/__pycache__/test_ordered_set.cpython-310.pyc
../jet/tests/__pycache__/test_tags.cpython-310.pyc
../jet/tests/__pycache__/test_utils.cpython-310.pyc
../jet/tests/__pycache__/test_views.cpython-310.pyc
../jet/tests/__pycache__/urls.cpython-310.pyc
../jet/tests/admin.py
../jet/tests/dashboard.py
../jet/tests/models.py
../jet/tests/settings.py
../jet/tests/test_dashboard.py
../jet/tests/test_filters.py
../jet/tests/test_ordered_set.py
../jet/tests/test_tags.py
../jet/tests/test_utils.py
../jet/tests/test_views.py
../jet/tests/urls.py
../jet/urls.py
../jet/utils.py
../jet/views.py
PKG-INFO
SOURCES.txt
dependency_links.txt
not-zip-safe
requires.txt
top_level.txt