├── .coveragerc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── feature-request.md │ ├── question.md │ └── task.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── config ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── django_boost ├── __init__.py ├── admin │ ├── __init__.py │ ├── actions.py │ ├── filters.py │ ├── mixins.py │ └── sites.py ├── admin_tools │ ├── __init__.py │ ├── apps.py │ └── management │ │ ├── __init__.py │ │ └── commands │ │ ├── __init__.py │ │ └── listsuperuser.py ├── apps.py ├── checks.py ├── conf │ └── app_template │ │ ├── __init__.py-tpl │ │ ├── admin.py-tpl │ │ ├── apps.py-tpl │ │ ├── forms.py-tpl │ │ ├── migrations │ │ └── __init__.py-tpl │ │ ├── models.py-tpl │ │ ├── tests.py-tpl │ │ ├── urls.py-tpl │ │ └── views.py-tpl ├── context_processors.py ├── core │ ├── __init__.py │ └── management.py ├── db │ ├── __init__.py │ └── router.py ├── forms │ ├── __init__.py │ ├── fields.py │ ├── mixins.py │ └── widgets.py ├── http │ ├── __init__.py │ └── response.py ├── locale │ ├── af │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ar │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ast │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── az │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── be │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── br │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── bs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── cy │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── da │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── dsb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── el │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en_AU │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── eo │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_AR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_CO │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es_VE │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── et │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fy │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ga │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── gd │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── gl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hsb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ia │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── io │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── is │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ka │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── kab │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── kk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── km │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── kn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ml │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── mr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── my │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nb │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ne │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── os │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pa │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sq │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sr_Latn │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sw │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ta │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── te │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── th │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── tt │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── udm │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ur │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── zh_Hans │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh_Hant │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── adminsitelog.py │ │ ├── deletemigrations.py │ │ ├── startapp_plus.py │ │ └── support_heroku.py │ ├── mixins.py │ └── templates.py ├── middleware │ ├── __init__.py │ └── html.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20191003_0518.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── fields │ │ ├── __init__.py │ │ └── related_descriptors.py │ ├── manager.py │ ├── mixins.py │ └── query.py ├── shortcuts.py ├── static │ └── script │ │ └── cookie.js ├── templates │ └── boost │ │ ├── admin │ │ └── hard_delete_selected_confirmation.html │ │ ├── forms │ │ └── widgets │ │ │ ├── star_radio.html │ │ │ ├── star_radio_input.html │ │ │ └── toggleswitch.html │ │ ├── html.html │ │ └── tecnical │ │ └── base.html ├── templatetags │ ├── __init__.py │ ├── boost.py │ ├── boost_query.py │ ├── boost_url.py │ └── mimetype.py ├── test │ ├── __init__.py │ └── testcase.py ├── urls │ ├── __init__.py │ ├── converters │ │ ├── __init__.py │ │ └── date.py │ └── static.py ├── utils │ ├── __init__.py │ ├── attribute.py │ ├── functions.py │ ├── html.py │ ├── itertools.py │ └── version.py ├── validators.py └── views │ ├── __init__.py │ ├── base.py │ ├── generic.py │ ├── mixins.py │ └── simple.py ├── docs ├── Makefile ├── admin_site_utilitys.rst ├── commands.rst ├── conf.py ├── custom_user.rst ├── form.rst ├── form_fields.rst ├── form_mixins.rst ├── generic_views.rst ├── http_status_code_exceptions.rst ├── index.rst ├── installation_instructions.rst ├── make.bat ├── middleware.rst ├── model_fields.rst ├── model_mixins.rst ├── multiple_database.rst ├── path_converters.rst ├── routing_utilitys.rst ├── shortcut_functions.rst ├── template_context.rst ├── template_tags.rst ├── utility_functions.rst └── view_mixins.rst ├── example ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_article_category_tag.py │ ├── 0003_auto_20190929_0803.py │ ├── 0004_article_image.py │ ├── 0005_auto_20220907_1507.py │ └── __init__.py ├── models.py ├── templates │ ├── base │ │ └── html.html │ ├── blog │ │ ├── article_create.html │ │ ├── article_delete.html │ │ ├── article_detail.html │ │ ├── article_list.html │ │ └── article_update.html │ ├── desktop │ │ └── index.html │ ├── example │ │ ├── customer_confirm_delete.html │ │ ├── customer_detail.html │ │ ├── customer_form.html │ │ ├── customer_list.html │ │ ├── detail.html │ │ ├── form.html │ │ └── index.html │ ├── mobile │ │ └── index.html │ └── registration │ │ └── login.html ├── tests.py ├── urls.py └── views │ ├── __init__.py │ ├── blog.py │ └── exception.py ├── manage.py ├── requirements ├── base.txt ├── ci.txt ├── develop.txt └── docs.txt ├── setup.py ├── tests ├── __init__.py ├── apps.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── auto_translate.py │ │ └── coverage.py ├── models.py └── tests │ ├── __init__.py │ ├── admin │ ├── __init__.py │ ├── models.py │ └── tests.py │ ├── context_processors │ ├── __init__.py │ ├── templates │ │ └── boost │ │ │ └── test │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── forms │ ├── __init__.py │ └── tests.py │ ├── forms_fields │ ├── __init__.py │ └── tests.py │ ├── forms_mixins │ ├── __init__.py │ ├── forms.py │ └── tests.py │ ├── logical_deletion │ ├── __init__.py │ ├── models.py │ └── tests.py │ ├── test_shortcuts.py │ ├── test_template_tags.py │ ├── test_urls.py │ ├── test_utils.py │ ├── test_validatiors.py │ ├── tests_commands.py │ ├── urls_converters │ ├── __init__.py │ ├── templates │ │ └── boost │ │ │ └── test │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py │ ├── views │ ├── __init__.py │ ├── tests.py │ ├── urls.py │ └── views.py │ └── views_mixins │ ├── __init__.py │ ├── templates │ └── boost │ │ └── test │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [ChanTsune] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/ISSUE_TEMPLATE/task.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/README.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /django_boost/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/__init__.py -------------------------------------------------------------------------------- /django_boost/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/admin/__init__.py -------------------------------------------------------------------------------- /django_boost/admin/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/admin/actions.py -------------------------------------------------------------------------------- /django_boost/admin/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/admin/filters.py -------------------------------------------------------------------------------- /django_boost/admin/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/admin/mixins.py -------------------------------------------------------------------------------- /django_boost/admin/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/admin/sites.py -------------------------------------------------------------------------------- /django_boost/admin_tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/admin_tools/__init__.py -------------------------------------------------------------------------------- /django_boost/admin_tools/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/admin_tools/apps.py -------------------------------------------------------------------------------- /django_boost/admin_tools/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/admin_tools/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/admin_tools/management/commands/listsuperuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/admin_tools/management/commands/listsuperuser.py -------------------------------------------------------------------------------- /django_boost/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/apps.py -------------------------------------------------------------------------------- /django_boost/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/checks.py -------------------------------------------------------------------------------- /django_boost/conf/app_template/__init__.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/conf/app_template/__init__.py-tpl -------------------------------------------------------------------------------- /django_boost/conf/app_template/admin.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/conf/app_template/admin.py-tpl -------------------------------------------------------------------------------- /django_boost/conf/app_template/apps.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/conf/app_template/apps.py-tpl -------------------------------------------------------------------------------- /django_boost/conf/app_template/forms.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/conf/app_template/forms.py-tpl -------------------------------------------------------------------------------- /django_boost/conf/app_template/migrations/__init__.py-tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/conf/app_template/models.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/conf/app_template/models.py-tpl -------------------------------------------------------------------------------- /django_boost/conf/app_template/tests.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/conf/app_template/tests.py-tpl -------------------------------------------------------------------------------- /django_boost/conf/app_template/urls.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/conf/app_template/urls.py-tpl -------------------------------------------------------------------------------- /django_boost/conf/app_template/views.py-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/conf/app_template/views.py-tpl -------------------------------------------------------------------------------- /django_boost/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/context_processors.py -------------------------------------------------------------------------------- /django_boost/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/core/__init__.py -------------------------------------------------------------------------------- /django_boost/core/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/core/management.py -------------------------------------------------------------------------------- /django_boost/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/db/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/db/router.py -------------------------------------------------------------------------------- /django_boost/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/forms/__init__.py -------------------------------------------------------------------------------- /django_boost/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/forms/fields.py -------------------------------------------------------------------------------- /django_boost/forms/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/forms/mixins.py -------------------------------------------------------------------------------- /django_boost/forms/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/forms/widgets.py -------------------------------------------------------------------------------- /django_boost/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/http/__init__.py -------------------------------------------------------------------------------- /django_boost/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/http/response.py -------------------------------------------------------------------------------- /django_boost/locale/af/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/af/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/af/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/af/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ar/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ar/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ast/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ast/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ast/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ast/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/az/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/az/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/az/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/az/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/be/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/be/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/be/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/be/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/bg/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/bg/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/bg/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/bg/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/bn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/bn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/bn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/bn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/br/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/br/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/br/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/br/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/bs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/bs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/cs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/cs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/cy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/cy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/cy/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/cy/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/da/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/da/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/dsb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/dsb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/dsb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/dsb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/el/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/el/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/en_AU/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/en_AU/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/en_AU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/en_AU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/en_GB/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/en_GB/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/en_GB/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/en_GB/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/eo/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/eo/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/eo/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/eo/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/es_AR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es_AR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/es_AR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es_AR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/es_CO/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es_CO/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/es_CO/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es_CO/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/es_MX/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es_MX/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/es_MX/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es_MX/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/es_VE/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es_VE/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/es_VE/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/es_VE/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/et/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/et/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/et/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/et/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/eu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/eu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/eu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/eu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/fa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/fa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/fi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/fi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/fy/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/fy/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/fy/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/fy/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ga/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ga/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ga/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ga/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/gd/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/gd/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/gd/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/gd/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/gl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/gl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/gl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/gl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/he/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/he/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/hi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/hi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/hi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/hi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/hr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/hr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/hr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/hr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/hsb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/hsb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/hsb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/hsb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/hu/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/hu/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ia/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ia/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ia/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ia/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/id/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/id/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/id/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/io/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/io/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/io/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/io/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/is/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/is/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/is/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/is/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ja/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ja/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ka/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ka/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ka/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ka/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/kab/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/kab/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/kab/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/kab/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/kk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/kk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/kk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/kk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/km/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/km/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/km/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/km/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/kn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/kn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/kn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/kn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ko/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ko/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/lb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/lb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/lb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/lb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/lt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/lt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/lv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/lv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/lv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/lv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/mk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/mk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/mk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/mk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ml/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ml/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ml/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ml/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/mn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/mn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/mn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/mn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/mr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/mr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/mr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/mr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/my/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/my/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/my/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/my/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/nb/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/nb/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/nb/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/nb/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ne/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ne/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ne/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ne/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/nn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/nn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/nn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/nn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/os/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/os/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/os/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/os/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/pa/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/pa/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/pa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/pa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/pl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/pl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/pt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/pt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/pt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/pt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ro/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ro/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ro/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ru/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ru/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/sl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/sl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/sq/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sq/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/sq/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sq/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/sr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/sr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/sr_Latn/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sr_Latn/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/sr_Latn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sr_Latn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/sv/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sv/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/sw/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sw/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/sw/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/sw/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ta/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ta/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ta/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ta/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/te/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/te/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/te/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/te/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/th/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/th/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/th/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/th/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/tr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/tr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/tt/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/tt/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/tt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/tt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/udm/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/udm/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/udm/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/udm/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/uk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/uk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/ur/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ur/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/ur/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/ur/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/vi/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/vi/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/vi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/vi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/zh_Hans/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/zh_Hans/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/zh_Hans/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/zh_Hans/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/locale/zh_Hant/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/zh_Hant/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /django_boost/locale/zh_Hant/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/locale/zh_Hant/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /django_boost/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/management/commands/adminsitelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/management/commands/adminsitelog.py -------------------------------------------------------------------------------- /django_boost/management/commands/deletemigrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/management/commands/deletemigrations.py -------------------------------------------------------------------------------- /django_boost/management/commands/startapp_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/management/commands/startapp_plus.py -------------------------------------------------------------------------------- /django_boost/management/commands/support_heroku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/management/commands/support_heroku.py -------------------------------------------------------------------------------- /django_boost/management/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/management/mixins.py -------------------------------------------------------------------------------- /django_boost/management/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/management/templates.py -------------------------------------------------------------------------------- /django_boost/middleware/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/middleware/__init__.py -------------------------------------------------------------------------------- /django_boost/middleware/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/middleware/html.py -------------------------------------------------------------------------------- /django_boost/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_boost/migrations/0002_auto_20191003_0518.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/migrations/0002_auto_20191003_0518.py -------------------------------------------------------------------------------- /django_boost/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/models/__init__.py -------------------------------------------------------------------------------- /django_boost/models/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/models/fields/__init__.py -------------------------------------------------------------------------------- /django_boost/models/fields/related_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/models/fields/related_descriptors.py -------------------------------------------------------------------------------- /django_boost/models/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/models/manager.py -------------------------------------------------------------------------------- /django_boost/models/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/models/mixins.py -------------------------------------------------------------------------------- /django_boost/models/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/models/query.py -------------------------------------------------------------------------------- /django_boost/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/shortcuts.py -------------------------------------------------------------------------------- /django_boost/static/script/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/static/script/cookie.js -------------------------------------------------------------------------------- /django_boost/templates/boost/admin/hard_delete_selected_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templates/boost/admin/hard_delete_selected_confirmation.html -------------------------------------------------------------------------------- /django_boost/templates/boost/forms/widgets/star_radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templates/boost/forms/widgets/star_radio.html -------------------------------------------------------------------------------- /django_boost/templates/boost/forms/widgets/star_radio_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templates/boost/forms/widgets/star_radio_input.html -------------------------------------------------------------------------------- /django_boost/templates/boost/forms/widgets/toggleswitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templates/boost/forms/widgets/toggleswitch.html -------------------------------------------------------------------------------- /django_boost/templates/boost/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templates/boost/html.html -------------------------------------------------------------------------------- /django_boost/templates/boost/tecnical/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templates/boost/tecnical/base.html -------------------------------------------------------------------------------- /django_boost/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/templatetags/boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templatetags/boost.py -------------------------------------------------------------------------------- /django_boost/templatetags/boost_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templatetags/boost_query.py -------------------------------------------------------------------------------- /django_boost/templatetags/boost_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templatetags/boost_url.py -------------------------------------------------------------------------------- /django_boost/templatetags/mimetype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/templatetags/mimetype.py -------------------------------------------------------------------------------- /django_boost/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/test/__init__.py -------------------------------------------------------------------------------- /django_boost/test/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/test/testcase.py -------------------------------------------------------------------------------- /django_boost/urls/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/urls/__init__.py -------------------------------------------------------------------------------- /django_boost/urls/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/urls/converters/__init__.py -------------------------------------------------------------------------------- /django_boost/urls/converters/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/urls/converters/date.py -------------------------------------------------------------------------------- /django_boost/urls/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/urls/static.py -------------------------------------------------------------------------------- /django_boost/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/utils/__init__.py -------------------------------------------------------------------------------- /django_boost/utils/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/utils/attribute.py -------------------------------------------------------------------------------- /django_boost/utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/utils/functions.py -------------------------------------------------------------------------------- /django_boost/utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/utils/html.py -------------------------------------------------------------------------------- /django_boost/utils/itertools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/utils/itertools.py -------------------------------------------------------------------------------- /django_boost/utils/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/utils/version.py -------------------------------------------------------------------------------- /django_boost/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/validators.py -------------------------------------------------------------------------------- /django_boost/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_boost/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/views/base.py -------------------------------------------------------------------------------- /django_boost/views/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/views/generic.py -------------------------------------------------------------------------------- /django_boost/views/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/views/mixins.py -------------------------------------------------------------------------------- /django_boost/views/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/django_boost/views/simple.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/admin_site_utilitys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/admin_site_utilitys.rst -------------------------------------------------------------------------------- /docs/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/commands.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/custom_user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/custom_user.rst -------------------------------------------------------------------------------- /docs/form.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/form.rst -------------------------------------------------------------------------------- /docs/form_fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/form_fields.rst -------------------------------------------------------------------------------- /docs/form_mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/form_mixins.rst -------------------------------------------------------------------------------- /docs/generic_views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/generic_views.rst -------------------------------------------------------------------------------- /docs/http_status_code_exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/http_status_code_exceptions.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation_instructions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/installation_instructions.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/middleware.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/middleware.rst -------------------------------------------------------------------------------- /docs/model_fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/model_fields.rst -------------------------------------------------------------------------------- /docs/model_mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/model_mixins.rst -------------------------------------------------------------------------------- /docs/multiple_database.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/multiple_database.rst -------------------------------------------------------------------------------- /docs/path_converters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/path_converters.rst -------------------------------------------------------------------------------- /docs/routing_utilitys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/routing_utilitys.rst -------------------------------------------------------------------------------- /docs/shortcut_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/shortcut_functions.rst -------------------------------------------------------------------------------- /docs/template_context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/template_context.rst -------------------------------------------------------------------------------- /docs/template_tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/template_tags.rst -------------------------------------------------------------------------------- /docs/utility_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/utility_functions.rst -------------------------------------------------------------------------------- /docs/view_mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/docs/view_mixins.rst -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/admin.py -------------------------------------------------------------------------------- /example/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/apps.py -------------------------------------------------------------------------------- /example/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/forms.py -------------------------------------------------------------------------------- /example/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/migrations/0002_article_category_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/migrations/0002_article_category_tag.py -------------------------------------------------------------------------------- /example/migrations/0003_auto_20190929_0803.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/migrations/0003_auto_20190929_0803.py -------------------------------------------------------------------------------- /example/migrations/0004_article_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/migrations/0004_article_image.py -------------------------------------------------------------------------------- /example/migrations/0005_auto_20220907_1507.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/migrations/0005_auto_20220907_1507.py -------------------------------------------------------------------------------- /example/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/models.py -------------------------------------------------------------------------------- /example/templates/base/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/base/html.html -------------------------------------------------------------------------------- /example/templates/blog/article_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/blog/article_create.html -------------------------------------------------------------------------------- /example/templates/blog/article_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/blog/article_delete.html -------------------------------------------------------------------------------- /example/templates/blog/article_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/blog/article_detail.html -------------------------------------------------------------------------------- /example/templates/blog/article_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/blog/article_list.html -------------------------------------------------------------------------------- /example/templates/blog/article_update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/blog/article_update.html -------------------------------------------------------------------------------- /example/templates/desktop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/desktop/index.html -------------------------------------------------------------------------------- /example/templates/example/customer_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/example/customer_confirm_delete.html -------------------------------------------------------------------------------- /example/templates/example/customer_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/example/customer_detail.html -------------------------------------------------------------------------------- /example/templates/example/customer_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/example/customer_form.html -------------------------------------------------------------------------------- /example/templates/example/customer_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/example/customer_list.html -------------------------------------------------------------------------------- /example/templates/example/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/example/detail.html -------------------------------------------------------------------------------- /example/templates/example/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/example/form.html -------------------------------------------------------------------------------- /example/templates/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/example/index.html -------------------------------------------------------------------------------- /example/templates/mobile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/mobile/index.html -------------------------------------------------------------------------------- /example/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/templates/registration/login.html -------------------------------------------------------------------------------- /example/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/tests.py -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/urls.py -------------------------------------------------------------------------------- /example/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/views/__init__.py -------------------------------------------------------------------------------- /example/views/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/views/blog.py -------------------------------------------------------------------------------- /example/views/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/example/views/exception.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/manage.py -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- 1 | Django>=3.0,<5 2 | user-agents>=2.0 3 | -------------------------------------------------------------------------------- /requirements/ci.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | setuptools 3 | pillow 4 | tox-travis 5 | codecov 6 | -------------------------------------------------------------------------------- /requirements/develop.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | tox 3 | autopep8 4 | -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/apps.py -------------------------------------------------------------------------------- /tests/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/management/commands/auto_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/management/commands/auto_translate.py -------------------------------------------------------------------------------- /tests/management/commands/coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/management/commands/coverage.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/admin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/admin/models.py -------------------------------------------------------------------------------- /tests/tests/admin/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/admin/tests.py -------------------------------------------------------------------------------- /tests/tests/context_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/context_processors/templates/boost/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/context_processors/templates/boost/test/index.html -------------------------------------------------------------------------------- /tests/tests/context_processors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/context_processors/tests.py -------------------------------------------------------------------------------- /tests/tests/context_processors/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/context_processors/urls.py -------------------------------------------------------------------------------- /tests/tests/context_processors/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/context_processors/views.py -------------------------------------------------------------------------------- /tests/tests/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/forms/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/forms/tests.py -------------------------------------------------------------------------------- /tests/tests/forms_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/forms_fields/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/forms_fields/tests.py -------------------------------------------------------------------------------- /tests/tests/forms_mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/forms_mixins/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/forms_mixins/forms.py -------------------------------------------------------------------------------- /tests/tests/forms_mixins/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/forms_mixins/tests.py -------------------------------------------------------------------------------- /tests/tests/logical_deletion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/logical_deletion/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/logical_deletion/models.py -------------------------------------------------------------------------------- /tests/tests/logical_deletion/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/logical_deletion/tests.py -------------------------------------------------------------------------------- /tests/tests/test_shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/test_shortcuts.py -------------------------------------------------------------------------------- /tests/tests/test_template_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/test_template_tags.py -------------------------------------------------------------------------------- /tests/tests/test_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/test_urls.py -------------------------------------------------------------------------------- /tests/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/test_utils.py -------------------------------------------------------------------------------- /tests/tests/test_validatiors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/test_validatiors.py -------------------------------------------------------------------------------- /tests/tests/tests_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/tests_commands.py -------------------------------------------------------------------------------- /tests/tests/urls_converters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/urls_converters/templates/boost/test/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/urls_converters/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/urls_converters/tests.py -------------------------------------------------------------------------------- /tests/tests/urls_converters/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/urls_converters/urls.py -------------------------------------------------------------------------------- /tests/tests/urls_converters/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/urls_converters/views.py -------------------------------------------------------------------------------- /tests/tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/views/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/views/tests.py -------------------------------------------------------------------------------- /tests/tests/views/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/views/urls.py -------------------------------------------------------------------------------- /tests/tests/views/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/views/views.py -------------------------------------------------------------------------------- /tests/tests/views_mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/views_mixins/templates/boost/test/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests/views_mixins/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/views_mixins/tests.py -------------------------------------------------------------------------------- /tests/tests/views_mixins/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/views_mixins/urls.py -------------------------------------------------------------------------------- /tests/tests/views_mixins/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tests/tests/views_mixins/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChanTsune/django-boost/HEAD/tox.ini --------------------------------------------------------------------------------