├── .coveragerc ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── AUTHORS.rst ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── djadmin2 ├── __init__.py ├── actions.py ├── admin2.py ├── apiviews.py ├── apps.py ├── contrib │ └── floppyforms.py ├── core.py ├── filters.py ├── forms.py ├── locale │ ├── bs │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl_PL │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── zh │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── permissions.py ├── renderers.py ├── settings.py ├── site.py ├── templatetags │ ├── __init__.py │ └── admin2_tags.py ├── tests │ ├── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── djadmin2theme_bootstrap3 │ │ │ └── custom_login_template.html │ ├── test_actions.py │ ├── test_admin2tags.py │ ├── test_auth_admin.py │ ├── test_core.py │ ├── test_renderers.py │ ├── test_types.py │ ├── test_utils.py │ ├── test_views.py │ └── urls.py ├── themes │ ├── __init__.py │ └── djadmin2theme_bootstrap3 │ │ ├── __init__.py │ │ ├── static │ │ └── djadmin2theme_bootstrap3 │ │ │ ├── css │ │ │ └── base.css │ │ │ ├── js │ │ │ ├── actions.js │ │ │ ├── base.js │ │ │ └── sb-admin-2.js │ │ │ ├── less │ │ │ ├── base.less │ │ │ └── sb-admin2 │ │ │ │ ├── mixins.less │ │ │ │ ├── sb-admin-2.less │ │ │ │ └── variables.less │ │ │ ├── libs │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ └── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── html5shiv.js │ │ │ ├── jquery.min.js │ │ │ └── respond.min.js │ │ │ └── scss │ │ │ ├── _variables.scss │ │ │ ├── base.scss │ │ │ └── sb-admin2 │ │ │ ├── _variables.scss │ │ │ ├── mixins │ │ │ ├── btn-outline.scss │ │ │ └── panel.scss │ │ │ └── sb-admin2.scss │ │ └── templates │ │ └── djadmin2theme_bootstrap3 │ │ ├── actions │ │ └── delete_selected_confirmation.html │ │ ├── app_index.html │ │ ├── auth │ │ ├── login.html │ │ ├── logout.html │ │ ├── password_change_done.html │ │ └── password_change_form.html │ │ ├── base.html │ │ ├── edit_inlines │ │ ├── stacked.html │ │ └── tabular.html │ │ ├── includes │ │ ├── app_model_list.html │ │ ├── history.html │ │ ├── list_actions.html │ │ ├── pagination.html │ │ └── save_buttons.html │ │ ├── index.html │ │ ├── model_confirm_delete.html │ │ ├── model_detail.html │ │ ├── model_history.html │ │ ├── model_list.html │ │ ├── model_update_form.html │ │ └── renderers │ │ └── boolean.html ├── types.py ├── utils.py ├── viewmixins.py └── views.py ├── docs ├── Makefile ├── README ├── _ext │ └── djangodocs.py ├── _static │ ├── README │ ├── join_team.png │ ├── request_language.png │ └── translate_now.png ├── conf.py ├── contributing.rst ├── design.rst ├── faq.rst ├── index.rst ├── installation.rst ├── internationalization.rst ├── make.bat ├── ref │ ├── actions.rst │ ├── api.rst │ ├── built-in-views.rst │ ├── forms.rst │ ├── meta.rst │ ├── modeladmin.rst │ ├── permissions.rst │ ├── renderers.rst │ ├── themes.rst │ └── views.rst └── tutorial.rst ├── example ├── blog │ ├── __init__.py │ ├── actions.py │ ├── admin.py │ ├── admin2.py │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pl_PL │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ └── zh │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── base.html │ │ ├── blog │ │ │ ├── blog_detail.html │ │ │ ├── blog_list.html │ │ │ └── home.html │ │ └── djadmin2 │ │ │ └── bootstrap │ │ │ └── actions │ │ │ └── publish_selected_items.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_apiviews.py │ │ ├── test_builtin_api_resources.py │ │ ├── test_filters.py │ │ ├── test_modelforms.py │ │ ├── test_nestedobjects.py │ │ ├── test_permissions.py │ │ └── test_views.py │ └── views.py ├── example │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── files │ ├── __init__.py │ ├── admin.py │ ├── admin2.py │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pl_PL │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── tl_PH │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ └── zh │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── home.html │ ├── tests │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── pubtest.txt │ │ ├── test_models.py │ │ └── test_views.py │ └── views.py ├── manage.py ├── polls │ ├── __init__.py │ ├── admin.py │ ├── admin2.py │ ├── locale │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pl_PL │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── tl_PH │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ └── zh │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── home.html │ ├── tests │ │ ├── __init__.py │ │ ├── test_models.py │ │ └── test_views.py │ └── views.py └── static │ └── img │ ├── admin.png │ └── admin2.png ├── fabfile.py ├── requirements.txt ├── requirements_test.txt ├── screenshots ├── Change_user.png ├── Select_user.png └── Site_administration.png ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/README.rst -------------------------------------------------------------------------------- /djadmin2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/__init__.py -------------------------------------------------------------------------------- /djadmin2/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/actions.py -------------------------------------------------------------------------------- /djadmin2/admin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/admin2.py -------------------------------------------------------------------------------- /djadmin2/apiviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/apiviews.py -------------------------------------------------------------------------------- /djadmin2/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/apps.py -------------------------------------------------------------------------------- /djadmin2/contrib/floppyforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/contrib/floppyforms.py -------------------------------------------------------------------------------- /djadmin2/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/core.py -------------------------------------------------------------------------------- /djadmin2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/filters.py -------------------------------------------------------------------------------- /djadmin2/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/forms.py -------------------------------------------------------------------------------- /djadmin2/locale/bs/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/bs/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/bs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/bs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/ca/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/ca/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/pl_PL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/pl_PL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/pl_PL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/pl_PL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /djadmin2/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /djadmin2/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/migrations/0001_initial.py -------------------------------------------------------------------------------- /djadmin2/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djadmin2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/models.py -------------------------------------------------------------------------------- /djadmin2/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/permissions.py -------------------------------------------------------------------------------- /djadmin2/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/renderers.py -------------------------------------------------------------------------------- /djadmin2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/settings.py -------------------------------------------------------------------------------- /djadmin2/site.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/site.py -------------------------------------------------------------------------------- /djadmin2/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djadmin2/templatetags/admin2_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/templatetags/admin2_tags.py -------------------------------------------------------------------------------- /djadmin2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djadmin2/tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /djadmin2/tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djadmin2/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/models.py -------------------------------------------------------------------------------- /djadmin2/tests/templates/djadmin2theme_bootstrap3/custom_login_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/templates/djadmin2theme_bootstrap3/custom_login_template.html -------------------------------------------------------------------------------- /djadmin2/tests/test_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/test_actions.py -------------------------------------------------------------------------------- /djadmin2/tests/test_admin2tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/test_admin2tags.py -------------------------------------------------------------------------------- /djadmin2/tests/test_auth_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/test_auth_admin.py -------------------------------------------------------------------------------- /djadmin2/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/test_core.py -------------------------------------------------------------------------------- /djadmin2/tests/test_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/test_renderers.py -------------------------------------------------------------------------------- /djadmin2/tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/test_types.py -------------------------------------------------------------------------------- /djadmin2/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/test_utils.py -------------------------------------------------------------------------------- /djadmin2/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/test_views.py -------------------------------------------------------------------------------- /djadmin2/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/tests/urls.py -------------------------------------------------------------------------------- /djadmin2/themes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/css/base.css -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/js/actions.js -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/js/base.js -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/js/sb-admin-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/js/sb-admin-2.js -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/less/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/less/base.less -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/less/sb-admin2/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/less/sb-admin2/sb-admin-2.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/less/sb-admin2/sb-admin-2.less -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/less/sb-admin2/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/less/sb-admin2/variables.less -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/html5shiv.js -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/jquery.min.js -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/libs/respond.min.js -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/_variables.scss -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/base.scss -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/sb-admin2/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/sb-admin2/_variables.scss -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/sb-admin2/mixins/btn-outline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/sb-admin2/mixins/btn-outline.scss -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/sb-admin2/mixins/panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/sb-admin2/mixins/panel.scss -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/sb-admin2/sb-admin2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/static/djadmin2theme_bootstrap3/scss/sb-admin2/sb-admin2.scss -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/actions/delete_selected_confirmation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/actions/delete_selected_confirmation.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/app_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/app_index.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/auth/login.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/auth/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/auth/logout.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/auth/password_change_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/auth/password_change_done.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/auth/password_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/auth/password_change_form.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/base.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/edit_inlines/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/edit_inlines/stacked.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/edit_inlines/tabular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/edit_inlines/tabular.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/app_model_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/app_model_list.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/history.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/list_actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/list_actions.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/pagination.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/save_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/includes/save_buttons.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/index.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_confirm_delete.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_detail.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_history.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_list.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_update_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/model_update_form.html -------------------------------------------------------------------------------- /djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/renderers/boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/themes/djadmin2theme_bootstrap3/templates/djadmin2theme_bootstrap3/renderers/boolean.html -------------------------------------------------------------------------------- /djadmin2/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/types.py -------------------------------------------------------------------------------- /djadmin2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/utils.py -------------------------------------------------------------------------------- /djadmin2/viewmixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/viewmixins.py -------------------------------------------------------------------------------- /djadmin2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/djadmin2/views.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/README -------------------------------------------------------------------------------- /docs/_ext/djangodocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/_ext/djangodocs.py -------------------------------------------------------------------------------- /docs/_static/README: -------------------------------------------------------------------------------- 1 | Put static files for Sphinx in here. 2 | -------------------------------------------------------------------------------- /docs/_static/join_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/_static/join_team.png -------------------------------------------------------------------------------- /docs/_static/request_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/_static/request_language.png -------------------------------------------------------------------------------- /docs/_static/translate_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/_static/translate_now.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/design.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/internationalization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/internationalization.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/ref/actions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/actions.rst -------------------------------------------------------------------------------- /docs/ref/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/api.rst -------------------------------------------------------------------------------- /docs/ref/built-in-views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/built-in-views.rst -------------------------------------------------------------------------------- /docs/ref/forms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/forms.rst -------------------------------------------------------------------------------- /docs/ref/meta.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/meta.rst -------------------------------------------------------------------------------- /docs/ref/modeladmin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/modeladmin.rst -------------------------------------------------------------------------------- /docs/ref/permissions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/permissions.rst -------------------------------------------------------------------------------- /docs/ref/renderers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/renderers.rst -------------------------------------------------------------------------------- /docs/ref/themes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/themes.rst -------------------------------------------------------------------------------- /docs/ref/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/ref/views.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /example/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/blog/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/actions.py -------------------------------------------------------------------------------- /example/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/admin.py -------------------------------------------------------------------------------- /example/blog/admin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/admin2.py -------------------------------------------------------------------------------- /example/blog/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/locale/pl_PL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/pl_PL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/pl_PL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/pl_PL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/blog/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/models.py -------------------------------------------------------------------------------- /example/blog/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/templates/base.html -------------------------------------------------------------------------------- /example/blog/templates/blog/blog_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/templates/blog/blog_detail.html -------------------------------------------------------------------------------- /example/blog/templates/blog/blog_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/templates/blog/blog_list.html -------------------------------------------------------------------------------- /example/blog/templates/blog/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/templates/blog/home.html -------------------------------------------------------------------------------- /example/blog/templates/djadmin2/bootstrap/actions/publish_selected_items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/templates/djadmin2/bootstrap/actions/publish_selected_items.html -------------------------------------------------------------------------------- /example/blog/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/blog/tests/test_apiviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/tests/test_apiviews.py -------------------------------------------------------------------------------- /example/blog/tests/test_builtin_api_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/tests/test_builtin_api_resources.py -------------------------------------------------------------------------------- /example/blog/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/tests/test_filters.py -------------------------------------------------------------------------------- /example/blog/tests/test_modelforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/tests/test_modelforms.py -------------------------------------------------------------------------------- /example/blog/tests/test_nestedobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/tests/test_nestedobjects.py -------------------------------------------------------------------------------- /example/blog/tests/test_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/tests/test_permissions.py -------------------------------------------------------------------------------- /example/blog/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/tests/test_views.py -------------------------------------------------------------------------------- /example/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/blog/views.py -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/files/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/admin.py -------------------------------------------------------------------------------- /example/files/admin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/admin2.py -------------------------------------------------------------------------------- /example/files/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/pl_PL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/pl_PL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/pl_PL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/pl_PL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/tl_PH/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/tl_PH/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/tl_PH/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/tl_PH/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/files/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/files/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/files/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/files/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/models.py -------------------------------------------------------------------------------- /example/files/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/templates/home.html -------------------------------------------------------------------------------- /example/files/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/files/tests/fixtures/pubtest.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /example/files/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/tests/test_models.py -------------------------------------------------------------------------------- /example/files/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/files/tests/test_views.py -------------------------------------------------------------------------------- /example/files/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/polls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/polls/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/admin.py -------------------------------------------------------------------------------- /example/polls/admin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/admin2.py -------------------------------------------------------------------------------- /example/polls/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/pl_PL/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/pl_PL/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/pl_PL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/pl_PL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/pt_BR/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/pt_BR/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/sk/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/sk/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/tl_PH/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/tl_PH/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/tl_PH/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/tl_PH/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/locale/zh/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/zh/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /example/polls/locale/zh/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/locale/zh/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /example/polls/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/polls/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/polls/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/models.py -------------------------------------------------------------------------------- /example/polls/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/templates/home.html -------------------------------------------------------------------------------- /example/polls/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/polls/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/tests/test_models.py -------------------------------------------------------------------------------- /example/polls/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/polls/tests/test_views.py -------------------------------------------------------------------------------- /example/polls/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /example/static/img/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/static/img/admin.png -------------------------------------------------------------------------------- /example/static/img/admin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/example/static/img/admin2.png -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/fabfile.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /screenshots/Change_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/screenshots/Change_user.png -------------------------------------------------------------------------------- /screenshots/Select_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/screenshots/Select_user.png -------------------------------------------------------------------------------- /screenshots/Site_administration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/screenshots/Site_administration.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jazzband/django-admin2/HEAD/tox.ini --------------------------------------------------------------------------------