├── core ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0001_initial.py │ ├── 0003_task.py │ └── 0002_project.py ├── templatetags │ └── __init__.py ├── admin.py ├── tests.py ├── apps.py ├── templates │ └── core │ │ ├── task_detail.html │ │ ├── task_form.html │ │ ├── company_table_filter.html │ │ ├── project_suggest_name.html │ │ ├── _task_partial.html │ │ ├── project_list.html │ │ ├── task_list.html │ │ ├── project_detail.html │ │ └── company_form.html ├── context_processors.py ├── filters.py ├── tables.py └── models.py ├── unpoly_demo ├── __init__.py ├── asgi.py ├── wsgi.py └── urls.py ├── dj.bat ├── rs.bat ├── dovenv.bat ├── run_djhtml.bat ├── rsp.bat ├── compile_scss.bat ├── staticfiles ├── admin │ ├── js │ │ ├── core.js.br │ │ ├── core.js.gz │ │ ├── cancel.js.br │ │ ├── cancel.js.gz │ │ ├── theme.js.br │ │ ├── theme.js.gz │ │ ├── urlify.js.br │ │ ├── urlify.js.gz │ │ ├── SelectBox.js.br │ │ ├── SelectBox.js.gz │ │ ├── actions.js.br │ │ ├── actions.js.gz │ │ ├── calendar.js.br │ │ ├── calendar.js.gz │ │ ├── collapse.js.br │ │ ├── collapse.js.gz │ │ ├── filters.js.br │ │ ├── filters.js.gz │ │ ├── inlines.js.br │ │ ├── inlines.js.gz │ │ ├── change_form.js.br │ │ ├── change_form.js.gz │ │ ├── jquery.init.js.br │ │ ├── jquery.init.js.gz │ │ ├── nav_sidebar.js.br │ │ ├── nav_sidebar.js.gz │ │ ├── prepopulate.js.br │ │ ├── prepopulate.js.gz │ │ ├── SelectFilter2.js.br │ │ ├── SelectFilter2.js.gz │ │ ├── autocomplete.js.br │ │ ├── autocomplete.js.gz │ │ ├── popup_response.js.br │ │ ├── popup_response.js.gz │ │ ├── prepopulate_init.js.br │ │ ├── prepopulate_init.js.gz │ │ ├── vendor │ │ │ ├── jquery │ │ │ │ ├── jquery.js.br │ │ │ │ ├── jquery.js.gz │ │ │ │ ├── LICENSE.txt.br │ │ │ │ ├── LICENSE.txt.gz │ │ │ │ ├── jquery.min.js.br │ │ │ │ ├── jquery.min.js.gz │ │ │ │ └── LICENSE.txt │ │ │ ├── select2 │ │ │ │ ├── LICENSE.md.br │ │ │ │ ├── LICENSE.md.gz │ │ │ │ ├── i18n │ │ │ │ │ ├── af.js.br │ │ │ │ │ ├── af.js.gz │ │ │ │ │ ├── ar.js.br │ │ │ │ │ ├── ar.js.gz │ │ │ │ │ ├── az.js.br │ │ │ │ │ ├── az.js.gz │ │ │ │ │ ├── bg.js.br │ │ │ │ │ ├── bg.js.gz │ │ │ │ │ ├── bn.js.br │ │ │ │ │ ├── bn.js.gz │ │ │ │ │ ├── bs.js.br │ │ │ │ │ ├── bs.js.gz │ │ │ │ │ ├── ca.js.br │ │ │ │ │ ├── ca.js.gz │ │ │ │ │ ├── cs.js.br │ │ │ │ │ ├── cs.js.gz │ │ │ │ │ ├── da.js.br │ │ │ │ │ ├── da.js.gz │ │ │ │ │ ├── de.js.br │ │ │ │ │ ├── de.js.gz │ │ │ │ │ ├── dsb.js.br │ │ │ │ │ ├── dsb.js.gz │ │ │ │ │ ├── el.js.br │ │ │ │ │ ├── el.js.gz │ │ │ │ │ ├── en.js.br │ │ │ │ │ ├── en.js.gz │ │ │ │ │ ├── es.js.br │ │ │ │ │ ├── es.js.gz │ │ │ │ │ ├── et.js.br │ │ │ │ │ ├── et.js.gz │ │ │ │ │ ├── eu.js.br │ │ │ │ │ ├── eu.js.gz │ │ │ │ │ ├── fa.js.br │ │ │ │ │ ├── fa.js.gz │ │ │ │ │ ├── fi.js.br │ │ │ │ │ ├── fi.js.gz │ │ │ │ │ ├── fr.js.br │ │ │ │ │ ├── fr.js.gz │ │ │ │ │ ├── gl.js.br │ │ │ │ │ ├── gl.js.gz │ │ │ │ │ ├── he.js.br │ │ │ │ │ ├── he.js.gz │ │ │ │ │ ├── hi.js.br │ │ │ │ │ ├── hi.js.gz │ │ │ │ │ ├── hr.js.br │ │ │ │ │ ├── hr.js.gz │ │ │ │ │ ├── hsb.js.br │ │ │ │ │ ├── hsb.js.gz │ │ │ │ │ ├── hu.js.br │ │ │ │ │ ├── hu.js.gz │ │ │ │ │ ├── hy.js.br │ │ │ │ │ ├── hy.js.gz │ │ │ │ │ ├── id.js.br │ │ │ │ │ ├── id.js.gz │ │ │ │ │ ├── is.js.br │ │ │ │ │ ├── is.js.gz │ │ │ │ │ ├── it.js.br │ │ │ │ │ ├── it.js.gz │ │ │ │ │ ├── ja.js.br │ │ │ │ │ ├── ja.js.gz │ │ │ │ │ ├── ka.js.br │ │ │ │ │ ├── ka.js.gz │ │ │ │ │ ├── km.js.br │ │ │ │ │ ├── km.js.gz │ │ │ │ │ ├── ko.js.br │ │ │ │ │ ├── ko.js.gz │ │ │ │ │ ├── lt.js.br │ │ │ │ │ ├── lt.js.gz │ │ │ │ │ ├── lv.js.br │ │ │ │ │ ├── lv.js.gz │ │ │ │ │ ├── mk.js.br │ │ │ │ │ ├── mk.js.gz │ │ │ │ │ ├── ms.js.br │ │ │ │ │ ├── ms.js.gz │ │ │ │ │ ├── nb.js.br │ │ │ │ │ ├── nb.js.gz │ │ │ │ │ ├── ne.js.br │ │ │ │ │ ├── ne.js.gz │ │ │ │ │ ├── nl.js.br │ │ │ │ │ ├── nl.js.gz │ │ │ │ │ ├── pl.js.br │ │ │ │ │ ├── pl.js.gz │ │ │ │ │ ├── ps.js.br │ │ │ │ │ ├── ps.js.gz │ │ │ │ │ ├── pt.js.br │ │ │ │ │ ├── pt.js.gz │ │ │ │ │ ├── ro.js.br │ │ │ │ │ ├── ro.js.gz │ │ │ │ │ ├── ru.js.br │ │ │ │ │ ├── ru.js.gz │ │ │ │ │ ├── sk.js.br │ │ │ │ │ ├── sk.js.gz │ │ │ │ │ ├── sl.js.br │ │ │ │ │ ├── sl.js.gz │ │ │ │ │ ├── sq.js.br │ │ │ │ │ ├── sq.js.gz │ │ │ │ │ ├── sr.js.br │ │ │ │ │ ├── sr.js.gz │ │ │ │ │ ├── sv.js.br │ │ │ │ │ ├── sv.js.gz │ │ │ │ │ ├── th.js.br │ │ │ │ │ ├── th.js.gz │ │ │ │ │ ├── tk.js.br │ │ │ │ │ ├── tk.js.gz │ │ │ │ │ ├── tr.js.br │ │ │ │ │ ├── tr.js.gz │ │ │ │ │ ├── uk.js.br │ │ │ │ │ ├── uk.js.gz │ │ │ │ │ ├── vi.js.br │ │ │ │ │ ├── vi.js.gz │ │ │ │ │ ├── pt-BR.js.br │ │ │ │ │ ├── pt-BR.js.gz │ │ │ │ │ ├── zh-CN.js.br │ │ │ │ │ ├── zh-CN.js.gz │ │ │ │ │ ├── zh-TW.js.br │ │ │ │ │ ├── zh-TW.js.gz │ │ │ │ │ ├── sr-Cyrl.js.br │ │ │ │ │ ├── sr-Cyrl.js.gz │ │ │ │ │ ├── zh-TW.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── tk.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── hy.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── af.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── ps.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── ne.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── sr-Cyrl.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── hsb.js │ │ │ │ │ ├── dsb.js │ │ │ │ │ ├── cs.js │ │ │ │ │ └── sk.js │ │ │ │ ├── select2.full.js.br │ │ │ │ ├── select2.full.js.gz │ │ │ │ ├── select2.full.min.js.br │ │ │ │ ├── select2.full.min.js.gz │ │ │ │ └── LICENSE.md │ │ │ └── xregexp │ │ │ │ ├── LICENSE.txt.br │ │ │ │ ├── LICENSE.txt.gz │ │ │ │ ├── xregexp.js.br │ │ │ │ ├── xregexp.js.gz │ │ │ │ ├── xregexp.min.js.br │ │ │ │ ├── xregexp.min.js.gz │ │ │ │ └── LICENSE.txt │ │ ├── admin │ │ │ ├── DateTimeShortcuts.js.br │ │ │ ├── DateTimeShortcuts.js.gz │ │ │ ├── RelatedObjectLookups.js.br │ │ │ └── RelatedObjectLookups.js.gz │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate_init.js │ │ ├── change_form.js │ │ ├── cancel.js │ │ ├── filters.js │ │ ├── autocomplete.js │ │ ├── prepopulate.js │ │ └── collapse.js │ ├── css │ │ ├── base.css.br │ │ ├── base.css.gz │ │ ├── rtl.css.br │ │ ├── rtl.css.gz │ │ ├── fonts.css.br │ │ ├── fonts.css.gz │ │ ├── forms.css.br │ │ ├── forms.css.gz │ │ ├── login.css.br │ │ ├── login.css.gz │ │ ├── widgets.css.br │ │ ├── widgets.css.gz │ │ ├── dark_mode.css.br │ │ ├── dark_mode.css.gz │ │ ├── dashboard.css.br │ │ ├── dashboard.css.gz │ │ ├── autocomplete.css.br │ │ ├── autocomplete.css.gz │ │ ├── changelists.css.br │ │ ├── changelists.css.gz │ │ ├── nav_sidebar.css.br │ │ ├── nav_sidebar.css.gz │ │ ├── responsive.css.br │ │ ├── responsive.css.gz │ │ ├── responsive_rtl.css.br │ │ ├── responsive_rtl.css.gz │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── select2.css.br │ │ │ │ ├── select2.css.gz │ │ │ │ ├── select2.min.css.br │ │ │ │ ├── select2.min.css.gz │ │ │ │ ├── LICENSE-SELECT2.md.br │ │ │ │ ├── LICENSE-SELECT2.md.gz │ │ │ │ └── LICENSE-SELECT2.md │ │ ├── fonts.css │ │ ├── dashboard.css │ │ └── login.css │ ├── img │ │ ├── LICENSE.br │ │ ├── LICENSE.gz │ │ ├── README.txt.br │ │ ├── README.txt.gz │ │ ├── icon-no.svg.br │ │ ├── icon-no.svg.gz │ │ ├── search.svg.br │ │ ├── search.svg.gz │ │ ├── icon-yes.svg.br │ │ ├── icon-yes.svg.gz │ │ ├── icon-addlink.svg.br │ │ ├── icon-addlink.svg.gz │ │ ├── icon-alert.svg.br │ │ ├── icon-alert.svg.gz │ │ ├── icon-clock.svg.br │ │ ├── icon-clock.svg.gz │ │ ├── icon-unknown.svg.br │ │ ├── icon-unknown.svg.gz │ │ ├── tooltag-add.svg.br │ │ ├── tooltag-add.svg.gz │ │ ├── calendar-icons.svg.br │ │ ├── calendar-icons.svg.gz │ │ ├── icon-calendar.svg.br │ │ ├── icon-calendar.svg.gz │ │ ├── icon-viewlink.svg.br │ │ ├── icon-viewlink.svg.gz │ │ ├── inline-delete.svg.br │ │ ├── inline-delete.svg.gz │ │ ├── selector-icons.svg.br │ │ ├── selector-icons.svg.gz │ │ ├── sorting-icons.svg.br │ │ ├── sorting-icons.svg.gz │ │ ├── icon-changelink.svg.br │ │ ├── icon-changelink.svg.gz │ │ ├── icon-deletelink.svg.br │ │ ├── icon-deletelink.svg.gz │ │ ├── icon-unknown-alt.svg.br │ │ ├── icon-unknown-alt.svg.gz │ │ ├── gis │ │ │ ├── move_vertex_off.svg.br │ │ │ ├── move_vertex_off.svg.gz │ │ │ ├── move_vertex_on.svg.br │ │ │ ├── move_vertex_on.svg.gz │ │ │ ├── move_vertex_on.svg │ │ │ └── move_vertex_off.svg │ │ ├── tooltag-arrowright.svg.br │ │ ├── tooltag-arrowright.svg.gz │ │ ├── tooltag-arrowright.svg │ │ ├── README.txt │ │ ├── icon-addlink.svg │ │ ├── tooltag-add.svg │ │ ├── icon-changelink.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-yes.svg │ │ ├── search.svg │ │ ├── icon-alert.svg │ │ ├── icon-no.svg │ │ ├── inline-delete.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-unknown.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-clock.svg │ │ ├── icon-calendar.svg │ │ ├── calendar-icons.svg │ │ ├── LICENSE │ │ └── sorting-icons.svg │ └── fonts │ │ ├── LICENSE.txt.br │ │ ├── LICENSE.txt.gz │ │ ├── README.txt.br │ │ ├── README.txt.gz │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ ├── Roboto-Regular-webfont.woff │ │ └── README.txt ├── application.js.br ├── application.js.gz ├── css │ ├── _helpers.sass.br │ ├── _helpers.sass.gz │ ├── application.css.br │ ├── application.css.gz │ ├── application.scss.br │ ├── application.scss.gz │ └── _helpers.sass ├── unpoly │ ├── unpoly.min.css.br │ ├── unpoly.min.css.gz │ ├── unpoly.min.js.br │ ├── unpoly.min.js.gz │ ├── unpoly-migrate.min.js.br │ ├── unpoly-migrate.min.js.gz │ ├── unpoly-bootstrap4.min.js.br │ ├── unpoly-bootstrap4.min.js.gz │ ├── unpoly-bootstrap4.min.css.br │ ├── unpoly-bootstrap4.min.css.gz │ ├── unpoly-bootstrap4.min.css │ └── unpoly-bootstrap4.min.js ├── django_tables2 │ ├── bootstrap.css.br │ ├── bootstrap.css.gz │ ├── themes │ │ └── paleblue │ │ │ ├── img │ │ │ ├── false.gif │ │ │ ├── true.gif │ │ │ ├── missing.png │ │ │ ├── header-bg.png │ │ │ ├── arrow-active-up.png │ │ │ ├── pagination-bg.gif │ │ │ ├── arrow-active-down.png │ │ │ ├── arrow-inactive-up.png │ │ │ └── arrow-inactive-down.png │ │ │ └── css │ │ │ ├── screen.css.br │ │ │ └── screen.css.gz │ └── bootstrap.css ├── django_extensions │ ├── img │ │ └── indicator.gif │ ├── js │ │ ├── jquery.ajaxQueue.js.br │ │ ├── jquery.ajaxQueue.js.gz │ │ ├── jquery.bgiframe.js.br │ │ ├── jquery.bgiframe.js.gz │ │ ├── jquery.autocomplete.js.br │ │ ├── jquery.autocomplete.js.gz │ │ └── jquery.bgiframe.js │ └── css │ │ ├── jquery.autocomplete.css.br │ │ ├── jquery.autocomplete.css.gz │ │ └── jquery.autocomplete.css └── application.js ├── static ├── unpoly │ ├── unpoly-bootstrap4.min.css │ └── unpoly-bootstrap4.min.js ├── css │ └── _helpers.sass └── application.js ├── requirements.txt ├── package.json ├── render.yaml ├── templates ├── partials │ ├── _messages.html │ ├── _fragment_explainer.html │ └── _nav.html └── base.html ├── Dockerfile ├── manage.py ├── README.md └── fly.toml /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unpoly_demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dj.bat: -------------------------------------------------------------------------------- 1 | python manage.py %* 2 | -------------------------------------------------------------------------------- /rs.bat: -------------------------------------------------------------------------------- 1 | python manage.py runserver 2 | -------------------------------------------------------------------------------- /dovenv.bat: -------------------------------------------------------------------------------- 1 | ..\venv\scripts\activate.bat 2 | -------------------------------------------------------------------------------- /run_djhtml.bat: -------------------------------------------------------------------------------- 1 | djhtml templates 2 | djhtml core\templates 3 | -------------------------------------------------------------------------------- /rsp.bat: -------------------------------------------------------------------------------- 1 | set WERKZEUG_DEBUG_PIN=off 2 | python manage.py runserver_plus 3 | -------------------------------------------------------------------------------- /compile_scss.bat: -------------------------------------------------------------------------------- 1 | pysassc static\css\application.scss static\css\application.css 2 | -------------------------------------------------------------------------------- /core/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /core/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /staticfiles/admin/js/core.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/core.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/core.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/core.js.gz -------------------------------------------------------------------------------- /staticfiles/application.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/application.js.br -------------------------------------------------------------------------------- /staticfiles/application.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/application.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/base.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/base.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/base.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/base.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/rtl.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/rtl.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/rtl.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/rtl.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/LICENSE.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/LICENSE.br -------------------------------------------------------------------------------- /staticfiles/admin/img/LICENSE.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/LICENSE.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/cancel.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/cancel.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/cancel.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/cancel.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/theme.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/theme.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/theme.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/theme.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/urlify.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/urlify.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/urlify.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/urlify.js.gz -------------------------------------------------------------------------------- /staticfiles/css/_helpers.sass.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/css/_helpers.sass.br -------------------------------------------------------------------------------- /staticfiles/css/_helpers.sass.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/css/_helpers.sass.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/fonts.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/fonts.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/fonts.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/fonts.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/forms.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/forms.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/forms.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/forms.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/login.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/login.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/login.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/login.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/widgets.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/widgets.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/widgets.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/widgets.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/README.txt.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/README.txt.br -------------------------------------------------------------------------------- /staticfiles/admin/img/README.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/README.txt.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-no.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-no.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-no.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-no.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/search.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/search.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/search.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/search.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/SelectBox.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/SelectBox.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/SelectBox.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/SelectBox.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/actions.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/actions.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/actions.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/actions.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/calendar.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/calendar.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/calendar.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/calendar.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/collapse.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/collapse.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/collapse.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/collapse.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/filters.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/filters.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/filters.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/filters.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/inlines.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/inlines.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/inlines.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/inlines.js.gz -------------------------------------------------------------------------------- /staticfiles/css/application.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/css/application.css.br -------------------------------------------------------------------------------- /staticfiles/css/application.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/css/application.css.gz -------------------------------------------------------------------------------- /staticfiles/css/application.scss.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/css/application.scss.br -------------------------------------------------------------------------------- /staticfiles/css/application.scss.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/css/application.scss.gz -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly.min.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly.min.css.br -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly.min.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly.min.css.gz -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly.min.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly.min.js.br -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly.min.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/dark_mode.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/dark_mode.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/dark_mode.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/dark_mode.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/dashboard.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/dashboard.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/dashboard.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/dashboard.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/fonts/LICENSE.txt.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/fonts/LICENSE.txt.br -------------------------------------------------------------------------------- /staticfiles/admin/fonts/LICENSE.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/fonts/LICENSE.txt.gz -------------------------------------------------------------------------------- /staticfiles/admin/fonts/README.txt.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/fonts/README.txt.br -------------------------------------------------------------------------------- /staticfiles/admin/fonts/README.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/fonts/README.txt.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-yes.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-yes.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-yes.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-yes.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/change_form.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/change_form.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/change_form.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/change_form.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/jquery.init.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/jquery.init.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/jquery.init.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/jquery.init.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/nav_sidebar.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/nav_sidebar.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/nav_sidebar.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/nav_sidebar.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/prepopulate.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/prepopulate.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/autocomplete.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/autocomplete.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/autocomplete.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/autocomplete.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/changelists.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/changelists.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/changelists.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/changelists.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/nav_sidebar.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/nav_sidebar.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/nav_sidebar.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/nav_sidebar.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/responsive.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/responsive.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/responsive.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/responsive.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-addlink.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-addlink.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-addlink.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-addlink.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-alert.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-alert.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-alert.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-alert.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-clock.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-clock.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-clock.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-clock.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-unknown.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-unknown.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-add.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/tooltag-add.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-add.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/tooltag-add.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/SelectFilter2.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/SelectFilter2.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/SelectFilter2.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/SelectFilter2.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/autocomplete.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/autocomplete.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/autocomplete.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/autocomplete.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/popup_response.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/popup_response.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/popup_response.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/popup_response.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/responsive_rtl.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/responsive_rtl.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/responsive_rtl.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/responsive_rtl.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/calendar-icons.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/calendar-icons.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/calendar-icons.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/calendar-icons.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-calendar.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-calendar.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-calendar.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-calendar.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-viewlink.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-viewlink.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-viewlink.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-viewlink.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/inline-delete.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/inline-delete.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/inline-delete.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/inline-delete.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/selector-icons.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/selector-icons.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/selector-icons.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/selector-icons.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/sorting-icons.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/sorting-icons.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/sorting-icons.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/sorting-icons.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate_init.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/prepopulate_init.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate_init.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/prepopulate_init.js.gz -------------------------------------------------------------------------------- /staticfiles/django_tables2/bootstrap.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/bootstrap.css.br -------------------------------------------------------------------------------- /staticfiles/django_tables2/bootstrap.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/bootstrap.css.gz -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly-migrate.min.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly-migrate.min.js.br -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly-migrate.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly-migrate.min.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-changelink.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-changelink.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-changelink.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-changelink.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-deletelink.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-deletelink.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-deletelink.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-deletelink.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown-alt.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-unknown-alt.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown-alt.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/icon-unknown-alt.svg.gz -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly-bootstrap4.min.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly-bootstrap4.min.js.br -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly-bootstrap4.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly-bootstrap4.min.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_off.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/gis/move_vertex_off.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_off.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/gis/move_vertex_off.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_on.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/gis/move_vertex_on.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_on.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/gis/move_vertex_on.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-arrowright.svg.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/tooltag-arrowright.svg.br -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-arrowright.svg.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/img/tooltag-arrowright.svg.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/jquery.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/jquery/jquery.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/jquery.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/jquery/jquery.js.gz -------------------------------------------------------------------------------- /staticfiles/django_extensions/img/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/img/indicator.gif -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly-bootstrap4.min.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly-bootstrap4.min.css.br -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly-bootstrap4.min.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/unpoly/unpoly-bootstrap4.min.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/select2.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/vendor/select2/select2.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/select2.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/vendor/select2/select2.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/DateTimeShortcuts.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/admin/DateTimeShortcuts.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/DateTimeShortcuts.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/admin/DateTimeShortcuts.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/LICENSE.txt.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/jquery/LICENSE.txt.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/LICENSE.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/jquery/LICENSE.txt.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/jquery.min.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/jquery/jquery.min.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/jquery.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/jquery/jquery.min.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/LICENSE.md.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/LICENSE.md.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/LICENSE.md.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/LICENSE.md.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/af.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/af.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/af.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/af.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ar.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ar.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ar.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ar.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/az.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/az.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/az.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/az.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bg.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/bg.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bg.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/bg.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bn.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/bn.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bn.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/bn.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bs.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/bs.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bs.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/bs.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ca.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ca.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ca.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ca.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/cs.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/cs.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/cs.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/cs.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/da.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/da.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/da.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/da.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/de.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/de.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/de.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/de.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/dsb.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/dsb.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/dsb.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/dsb.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/el.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/el.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/el.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/el.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/en.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/en.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/en.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/en.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/es.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/es.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/es.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/es.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/et.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/et.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/et.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/et.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/eu.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/eu.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/eu.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/eu.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fa.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/fa.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fa.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/fa.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fi.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/fi.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fi.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/fi.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fr.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/fr.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fr.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/fr.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/gl.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/gl.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/gl.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/gl.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/he.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/he.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/he.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/he.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hi.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hi.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hi.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hi.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hr.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hr.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hr.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hr.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hsb.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hsb.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hsb.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hsb.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hu.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hu.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hu.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hu.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hy.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hy.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hy.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/hy.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/id.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/id.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/id.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/id.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/is.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/is.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/is.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/is.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/it.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/it.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/it.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/it.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ja.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ja.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ja.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ja.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ka.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ka.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ka.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ka.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/km.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/km.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/km.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/km.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ko.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ko.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ko.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ko.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lt.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/lt.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lt.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/lt.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lv.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/lv.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lv.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/lv.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/mk.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/mk.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/mk.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/mk.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ms.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ms.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ms.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ms.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nb.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/nb.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nb.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/nb.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ne.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ne.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ne.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ne.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nl.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/nl.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nl.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/nl.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pl.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/pl.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pl.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/pl.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ps.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ps.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ps.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ps.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/pt.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/pt.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ro.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ro.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ro.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ro.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ru.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ru.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ru.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/ru.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sk.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sk.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sk.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sk.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sl.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sl.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sl.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sl.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sq.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sq.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sq.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sq.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sr.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sr.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sv.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sv.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sv.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sv.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/th.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/th.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/th.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/th.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tk.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/tk.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tk.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/tk.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tr.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/tr.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tr.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/tr.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/uk.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/uk.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/uk.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/uk.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/vi.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/vi.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/vi.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/vi.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/LICENSE.txt.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/xregexp/LICENSE.txt.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/LICENSE.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/xregexp/LICENSE.txt.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/xregexp.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/xregexp/xregexp.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/xregexp.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/xregexp/xregexp.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/RelatedObjectLookups.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/admin/RelatedObjectLookups.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/admin/RelatedObjectLookups.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/admin/RelatedObjectLookups.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt-BR.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/pt-BR.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt-BR.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/pt-BR.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-CN.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/zh-CN.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-CN.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/zh-CN.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-TW.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/zh-TW.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-TW.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/zh-TW.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/xregexp.min.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/xregexp/xregexp.min.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/xregexp.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/xregexp/xregexp.min.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/select2.min.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/vendor/select2/select2.min.css.br -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/select2.min.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/vendor/select2/select2.min.css.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.js.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/select2.full.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/select2.full.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/select2.full.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/select2.full.js.gz -------------------------------------------------------------------------------- /staticfiles/django_extensions/js/jquery.ajaxQueue.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/js/jquery.ajaxQueue.js.br -------------------------------------------------------------------------------- /staticfiles/django_extensions/js/jquery.ajaxQueue.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/js/jquery.ajaxQueue.js.gz -------------------------------------------------------------------------------- /staticfiles/django_extensions/js/jquery.bgiframe.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/js/jquery.bgiframe.js.br -------------------------------------------------------------------------------- /staticfiles/django_extensions/js/jquery.bgiframe.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/js/jquery.bgiframe.js.gz -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/false.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/false.gif -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/true.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/true.gif -------------------------------------------------------------------------------- /core/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CoreConfig(AppConfig): 5 | default_auto_field = "django.db.models.BigAutoField" 6 | name = "core" 7 | -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md.br -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md.gz -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/select2.full.min.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/select2.full.min.js.br -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/select2.full.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/admin/js/vendor/select2/select2.full.min.js.gz -------------------------------------------------------------------------------- /staticfiles/django_extensions/js/jquery.autocomplete.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/js/jquery.autocomplete.js.br -------------------------------------------------------------------------------- /staticfiles/django_extensions/js/jquery.autocomplete.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/js/jquery.autocomplete.js.gz -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/missing.png -------------------------------------------------------------------------------- /staticfiles/django_extensions/css/jquery.autocomplete.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/css/jquery.autocomplete.css.br -------------------------------------------------------------------------------- /staticfiles/django_extensions/css/jquery.autocomplete.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_extensions/css/jquery.autocomplete.css.gz -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/css/screen.css.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/css/screen.css.br -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/css/screen.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/css/screen.css.gz -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/header-bg.png -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/arrow-active-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/arrow-active-up.png -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/pagination-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/pagination-bg.gif -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/arrow-active-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/arrow-active-down.png -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/arrow-inactive-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/arrow-inactive-up.png -------------------------------------------------------------------------------- /core/templates/core/task_detail.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load core_tags crispy_forms_tags %} 3 | 4 | {% block content %} 5 | {% include "core/_task_partial.html" %} 6 | {% endblock %} -------------------------------------------------------------------------------- /staticfiles/django_tables2/themes/paleblue/img/arrow-inactive-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spapas/django-unpoly-demo/HEAD/staticfiles/django_tables2/themes/paleblue/img/arrow-inactive-down.png -------------------------------------------------------------------------------- /core/context_processors.py: -------------------------------------------------------------------------------- 1 | from django.conf import settings 2 | 3 | 4 | def default_cp(request): 5 | 6 | return { 7 | "debug": settings.DEBUG, 8 | "up": request.up, 9 | 10 | } 11 | -------------------------------------------------------------------------------- /static/unpoly/unpoly-bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | up-modal .container,up-modal .container-fluid,up-drawer .container,up-drawer .container-fluid,up-popup .container,up-popup .container-fluid{padding-left:0;padding-right:0;max-width:none} 2 | 3 | -------------------------------------------------------------------------------- /staticfiles/django_tables2/bootstrap.css: -------------------------------------------------------------------------------- 1 | .table-container th.asc:after { 2 | content: '\0000a0\0025b2'; 3 | float: right; 4 | } 5 | .table-container th.desc:after { 6 | content: '\0000a0\0025bc'; 7 | float: right; 8 | } 9 | -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly-bootstrap4.min.css: -------------------------------------------------------------------------------- 1 | up-modal .container,up-modal .container-fluid,up-drawer .container,up-drawer .container-fluid,up-popup .container,up-popup .container-fluid{padding-left:0;padding-right:0;max-width:none} 2 | 3 | -------------------------------------------------------------------------------- /staticfiles/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | WOFF files extracted using https://github.com/majodev/google-webfonts-helper 3 | Weights used in this project: Light (300), Regular (400), Bold (700) 4 | -------------------------------------------------------------------------------- /static/css/_helpers.sass: -------------------------------------------------------------------------------- 1 | //=clear_after 2 | // &:after 3 | // content: "" 4 | // display: block 5 | // clear: both 6 | 7 | =margin-y($margin) 8 | margin-top: $margin 9 | margin-bottom: $margin 10 | 11 | @function spacer($length) 12 | @return map-get($spacers, $length) 13 | -------------------------------------------------------------------------------- /staticfiles/css/_helpers.sass: -------------------------------------------------------------------------------- 1 | //=clear_after 2 | // &:after 3 | // content: "" 4 | // display: block 5 | // clear: both 6 | 7 | =margin-y($margin) 8 | margin-top: $margin 9 | margin-bottom: $margin 10 | 11 | @function spacer($length) 12 | @return map-get($spacers, $length) 13 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | black==23.3.0 2 | Brotli==1.0.9 3 | crispy-bootstrap4==2022.1 4 | Django==4.2.2 5 | django-crispy-forms==2.0 6 | django-extensions==3.2.3 7 | django-filter==23.2 8 | django-tables2==2.6.0 9 | djhtml==3.0.6 10 | gunicorn==20.1.0 11 | libsass==0.22.0 12 | unpoly==0.4.0 13 | Werkzeug==2.2.3 14 | whitenoise==6.5.0 -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "unpoly_demo", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "author": "", 10 | "license": "ISC", 11 | "dependencies": { 12 | "bootstrap": "^4.6.2" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /core/filters.py: -------------------------------------------------------------------------------- 1 | import django_filters 2 | from . import models 3 | 4 | 5 | class CompanyFilter(django_filters.FilterSet): 6 | class Meta: 7 | model = models.Company 8 | fields = { 9 | "id": ["exact"], 10 | "name": ["icontains"], 11 | "address": ["icontains"], 12 | } 13 | -------------------------------------------------------------------------------- /render.yaml: -------------------------------------------------------------------------------- 1 | services: 2 | - type: web 3 | name: unpoly_demo 4 | env: python 5 | plan: free 6 | buildCommand: "./build.sh" 7 | startCommand: "gunicorn unpoly_demo.wsgi:application" 8 | envVars: 9 | - key: PYTHON_VERSION 10 | value: "3.10.7" 11 | - key: SECRET_KEY 12 | generateValue: true 13 | -------------------------------------------------------------------------------- /templates/partials/_messages.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /staticfiles/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - https://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /*global jQuery:false*/ 2 | 'use strict'; 3 | /* Puts the included jQuery into our own namespace using noConflict and passing 4 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 5 | * namespace (i.e. this preserves pre-existing values for both window.$ and 6 | * window.jQuery). 7 | */ 8 | window.django = {jQuery: jQuery.noConflict(true)}; 9 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/search.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /unpoly_demo/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for unpoly_demo project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.1/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "unpoly_demo.settings") 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /unpoly_demo/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for unpoly_demo project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/4.1/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "unpoly_demo.settings") 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/css/fonts.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Roboto'; 3 | src: url('../fonts/Roboto-Bold-webfont.woff'); 4 | font-weight: 700; 5 | font-style: normal; 6 | } 7 | 8 | @font-face { 9 | font-family: 'Roboto'; 10 | src: url('../fonts/Roboto-Regular-webfont.woff'); 11 | font-weight: 400; 12 | font-style: normal; 13 | } 14 | 15 | @font-face { 16 | font-family: 'Roboto'; 17 | src: url('../fonts/Roboto-Light-webfont.woff'); 18 | font-weight: 300; 19 | font-style: normal; 20 | } 21 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-no.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | ARG PYTHON_VERSION=3.10 2 | 3 | FROM python:${PYTHON_VERSION} 4 | 5 | RUN apt-get update && apt-get install -y \ 6 | python3-pip \ 7 | python3-venv \ 8 | python3-dev \ 9 | python3-setuptools \ 10 | python3-wheel 11 | 12 | RUN mkdir -p /app 13 | WORKDIR /app 14 | 15 | COPY requirements.txt . 16 | RUN pip install -r requirements.txt 17 | 18 | COPY . . 19 | 20 | RUN python manage.py collectstatic --noinput 21 | 22 | 23 | EXPOSE 8080 24 | 25 | # replace APP_NAME with module name 26 | CMD ["gunicorn", "--bind", ":8080", "--workers", "2", "unpoly_demo.wsgi"] 27 | -------------------------------------------------------------------------------- /staticfiles/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/css/dashboard.css: -------------------------------------------------------------------------------- 1 | /* DASHBOARD */ 2 | .dashboard td, .dashboard th { 3 | word-break: break-word; 4 | } 5 | 6 | .dashboard .module table th { 7 | width: 100%; 8 | } 9 | 10 | .dashboard .module table td { 11 | white-space: nowrap; 12 | } 13 | 14 | .dashboard .module table td a { 15 | display: block; 16 | padding-right: .6em; 17 | } 18 | 19 | /* RECENT ACTIONS MODULE */ 20 | 21 | .module ul.actionlist { 22 | margin-left: 0; 23 | } 24 | 25 | ul.actionlist li { 26 | list-style-type: none; 27 | overflow: hidden; 28 | text-overflow: ellipsis; 29 | } 30 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-viewlink.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/js/popup_response.js: -------------------------------------------------------------------------------- 1 | /*global opener */ 2 | 'use strict'; 3 | { 4 | const initData = JSON.parse(document.getElementById('django-admin-popup-response-constants').dataset.popupResponse); 5 | switch(initData.action) { 6 | case 'change': 7 | opener.dismissChangeRelatedObjectPopup(window, initData.value, initData.obj, initData.new_value); 8 | break; 9 | case 'delete': 10 | opener.dismissDeleteRelatedObjectPopup(window, initData.value); 11 | break; 12 | default: 13 | opener.dismissAddRelatedObjectPopup(window, initData.value, initData.obj); 14 | break; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(n){return"請刪掉"+(n.input.length-n.maximum)+"個字元"},inputTooShort:function(n){return"請再輸入"+(n.minimum-n.input.length)+"個字元"},loadingMore:function(){return"載入中…"},maximumSelected:function(n){return"你只能選擇最多"+n.maximum+"項"},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"},removeAllItems:function(){return"刪除所有項目"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /core/templates/core/task_form.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load core_tags crispy_forms_tags %} 3 | 4 | {% block content %} 5 | 6 | 17 | {% endblock %} -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | { 3 | const $ = django.jQuery; 4 | const fields = $('#django-admin-prepopulated-fields-constants').data('prepopulatedFields'); 5 | $.each(fields, function(index, field) { 6 | $( 7 | '.empty-form .form-row .field-' + field.name + 8 | ', .empty-form.form-row .field-' + field.name + 9 | ', .empty-form .form-row.field-' + field.name 10 | ).addClass('prepopulated_field'); 11 | $(field.id).data('dependency_list', field.dependency_list).prepopulate( 12 | field.dependency_ids, field.maxLength, field.allowUnicode 13 | ); 14 | }); 15 | } 16 | -------------------------------------------------------------------------------- /core/tables.py: -------------------------------------------------------------------------------- 1 | import django_tables2 as tables 2 | from django_tables2.utils import A 3 | from . import models 4 | 5 | 6 | class CompanyTable(tables.Table): 7 | id = tables.LinkColumn( 8 | "company-detail", 9 | args=[A("id")], 10 | attrs={ 11 | "a": { 12 | "class": "btn btn-primary btn-sm", 13 | "up-on-dismissed": "up.reload('.table', { focus: ':main' })", 14 | "up-layer": "new", 15 | } 16 | }, 17 | ) 18 | 19 | class Meta: 20 | model = models.Company 21 | template_name = "django_tables2/bootstrap4.html" 22 | fields = ("id", "name", "address") 23 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/js/change_form.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | { 3 | const inputTags = ['BUTTON', 'INPUT', 'SELECT', 'TEXTAREA']; 4 | const modelName = document.getElementById('django-admin-form-add-constants').dataset.modelName; 5 | if (modelName) { 6 | const form = document.getElementById(modelName + '_form'); 7 | for (const element of form.elements) { 8 | // HTMLElement.offsetParent returns null when the element is not 9 | // rendered. 10 | if (inputTags.includes(element.tagName) && !element.disabled && element.offsetParent) { 11 | element.focus(); 12 | break; 13 | } 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(n){return"请删除"+(n.input.length-n.maximum)+"个字符"},inputTooShort:function(n){return"请再输入至少"+(n.minimum-n.input.length)+"个字符"},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(n){return"最多只能选择"+n.maximum+"个项目"},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"},removeAllItems:function(){return"删除所有项目"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(n){return n.input.length-n.maximum+" 文字を削除してください"},inputTooShort:function(n){return"少なくとも "+(n.minimum-n.input.length)+" 文字を入力してください"},loadingMore:function(){return"読み込み中…"},maximumSelected:function(n){return n.maximum+" 件しか選択できません"},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"},removeAllItems:function(){return"すべてのアイテムを削除"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/az",[],function(){return{inputTooLong:function(n){return n.input.length-n.maximum+" simvol silin"},inputTooShort:function(n){return n.minimum-n.input.length+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(n){return"Sadəcə "+n.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"},removeAllItems:function(){return"Bütün elementləri sil"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(n){return"너무 깁니다. "+(n.input.length-n.maximum)+" 글자 지워주세요."},inputTooShort:function(n){return"너무 짧습니다. "+(n.minimum-n.input.length)+" 글자 더 입력해주세요."},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(n){return"최대 "+n.maximum+"개까지만 선택 가능합니다."},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"},removeAllItems:function(){return"모든 항목 삭제"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | """Run administrative tasks.""" 9 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "unpoly_demo.settings") 10 | try: 11 | from django.core.management import execute_from_command_line 12 | except ImportError as exc: 13 | raise ImportError( 14 | "Couldn't import Django. Are you sure it's installed and " 15 | "available on your PYTHONPATH environment variable? Did you " 16 | "forget to activate a virtual environment?" 17 | ) from exc 18 | execute_from_command_line(sys.argv) 19 | 20 | 21 | if __name__ == "__main__": 22 | main() 23 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/vi",[],function(){return{inputTooLong:function(n){return"Vui lòng xóa bớt "+(n.input.length-n.maximum)+" ký tự"},inputTooShort:function(n){return"Vui lòng nhập thêm từ "+(n.minimum-n.input.length)+" ký tự trở lên"},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(n){return"Chỉ có thể chọn được "+n.maximum+" lựa chọn"},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"},removeAllItems:function(){return"Xóa tất cả các mục"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/tk",[],function(){return{errorLoading:function(){return"Netije ýüklenmedi."},inputTooLong:function(e){return e.input.length-e.maximum+" harp bozuň."},inputTooShort:function(e){return"Ýene-de iň az "+(e.minimum-e.input.length)+" harp ýazyň."},loadingMore:function(){return"Köpräk netije görkezilýär…"},maximumSelected:function(e){return"Diňe "+e.maximum+" sanysyny saýlaň."},noResults:function(){return"Netije tapylmady."},searching:function(){return"Gözlenýär…"},removeAllItems:function(){return"Remove all items"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(n){return"Hapuskan "+(n.input.length-n.maximum)+" huruf"},inputTooShort:function(n){return"Masukkan "+(n.minimum-n.input.length)+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(n){return"Anda hanya dapat memilih "+n.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"},removeAllItems:function(){return"Hapus semua item"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/tr",[],function(){return{errorLoading:function(){return"Sonuç yüklenemedi"},inputTooLong:function(n){return n.input.length-n.maximum+" karakter daha girmelisiniz"},inputTooShort:function(n){return"En az "+(n.minimum-n.input.length)+" karakter daha girmelisiniz"},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(n){return"Sadece "+n.maximum+" seçim yapabilirsiniz"},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"},removeAllItems:function(){return"Tüm öğeleri kaldır"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unpoly demo 2 | 3 | This is a demo of [Unpoly](https://unpoly.com), a JavaScript library for 4 | progressive enhancement of web applications. This demo is a clone of the 5 | original Unpoly demo (see [https://demo.unpoly.com/](https://demo.unpoly.com/)) 6 | written in Django instead of Ruby. 7 | 8 | The demo has been deployed on fly.io and render.com and can be accessed at 9 | [https://unpoly-demo.spapas.net/](https://unpoly-demo.spapas.net/) or 10 | [https://unpoly-demo.fly.dev/](https://unpoly-demo.fly.dev/) or 11 | [https://unpoly-demo.onrender.com/](https://unpoly-demo.onrender.com/). 12 | 13 | A companion article explaining stuff about this demo and about the django 14 | unpoly integration in general can be found on https://www.spapas.net/2023/04/04/using-unpoly-with-django/ 15 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(n){return"الرجاء حذف "+(n.input.length-n.maximum)+" عناصر"},inputTooShort:function(n){return"الرجاء إضافة "+(n.minimum-n.input.length)+" عناصر"},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(n){return"تستطيع إختيار "+n.maximum+" بنود فقط"},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"},removeAllItems:function(){return"قم بإزالة كل العناصر"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/th",[],function(){return{errorLoading:function(){return"ไม่สามารถค้นข้อมูลได้"},inputTooLong:function(n){return"โปรดลบออก "+(n.input.length-n.maximum)+" ตัวอักษร"},inputTooShort:function(n){return"โปรดพิมพ์เพิ่มอีก "+(n.minimum-n.input.length)+" ตัวอักษร"},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(n){return"คุณสามารถเลือกได้ไม่เกิน "+n.maximum+" รายการ"},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"},removeAllItems:function(){return"ลบรายการทั้งหมด"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){return"Vennligst fjern "+(e.input.length-e.maximum)+" tegn"},inputTooShort:function(e){return"Vennligst skriv inn "+(e.minimum-e.input.length)+" tegn til"},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"},removeAllItems:function(){return"Fjern alle elementer"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/km.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(n){return"សូមលុបចេញ "+(n.input.length-n.maximum)+" អក្សរ"},inputTooShort:function(n){return"សូមបញ្ចូល"+(n.minimum-n.input.length)+" អក្សរ រឺ ច្រើនជាងនេះ"},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(n){return"អ្នកអាចជ្រើសរើសបានតែ "+n.maximum+" ជម្រើសប៉ុណ្ណោះ"},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."},removeAllItems:function(){return"លុបធាតុទាំងអស់"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(n){return"Vänligen sudda ut "+(n.input.length-n.maximum)+" tecken"},inputTooShort:function(n){return"Vänligen skriv in "+(n.minimum-n.input.length)+" eller fler tecken"},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(n){return"Du kan max välja "+n.maximum+" element"},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"},removeAllItems:function(){return"Ta bort alla objekt"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/fi",[],function(){return{errorLoading:function(){return"Tuloksia ei saatu ladattua."},inputTooLong:function(n){return"Ole hyvä ja anna "+(n.input.length-n.maximum)+" merkkiä vähemmän"},inputTooShort:function(n){return"Ole hyvä ja anna "+(n.minimum-n.input.length)+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(n){return"Voit valita ainoastaan "+n.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){return"Haetaan…"},removeAllItems:function(){return"Poista kaikki kohteet"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/is",[],function(){return{inputTooLong:function(n){var t=n.input.length-n.maximum,e="Vinsamlegast styttið texta um "+t+" staf";return t<=1?e:e+"i"},inputTooShort:function(n){var t=n.minimum-n.input.length,e="Vinsamlegast skrifið "+t+" staf";return t>1&&(e+="i"),e+=" í viðbót"},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(n){return"Þú getur aðeins valið "+n.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"},removeAllItems:function(){return"Fjarlægðu öll atriði"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var n=e.input.length-e.maximum,t="Sisesta "+n+" täht";return 1!=n&&(t+="e"),t+=" vähem"},inputTooShort:function(e){var n=e.minimum-e.input.length,t="Sisesta "+n+" täht";return 1!=n&&(t+="e"),t+=" rohkem"},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var n="Saad vaid "+e.maximum+" tulemus";return 1==e.maximum?n+="e":n+="t",n+=" valida"},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"},removeAllItems:function(){return"Eemalda kõik esemed"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/hu",[],function(){return{errorLoading:function(){return"Az eredmények betöltése nem sikerült."},inputTooLong:function(e){return"Túl hosszú. "+(e.input.length-e.maximum)+" karakterrel több, mint kellene."},inputTooShort:function(e){return"Túl rövid. Még "+(e.minimum-e.input.length)+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"},removeAllItems:function(){return"Távolítson el minden elemet"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(n){return"Sila hapuskan "+(n.input.length-n.maximum)+" aksara"},inputTooShort:function(n){return"Sila masukkan "+(n.minimum-n.input.length)+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(n){return"Anda hanya boleh memilih "+n.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"},removeAllItems:function(){return"Keluarkan semua item"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ka.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ka",[],function(){return{errorLoading:function(){return"მონაცემების ჩატვირთვა შეუძლებელია."},inputTooLong:function(n){return"გთხოვთ აკრიფეთ "+(n.input.length-n.maximum)+" სიმბოლოთი ნაკლები"},inputTooShort:function(n){return"გთხოვთ აკრიფეთ "+(n.minimum-n.input.length)+" სიმბოლო ან მეტი"},loadingMore:function(){return"მონაცემების ჩატვირთვა…"},maximumSelected:function(n){return"თქვენ შეგიძლიათ აირჩიოთ არაუმეტეს "+n.maximum+" ელემენტი"},noResults:function(){return"რეზულტატი არ მოიძებნა"},searching:function(){return"ძიება…"},removeAllItems:function(){return"ამოიღე ყველა ელემენტი"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/bg",[],function(){return{inputTooLong:function(n){var e=n.input.length-n.maximum,u="Моля въведете с "+e+" по-малко символ";return e>1&&(u+="a"),u},inputTooShort:function(n){var e=n.minimum-n.input.length,u="Моля въведете още "+e+" символ";return e>1&&(u+="a"),u},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(n){var e="Можете да направите до "+n.maximum+" ";return n.maximum>1?e+="избора":e+="избор",e},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"},removeAllItems:function(){return"Премахнете всички елементи"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){return"Angiv venligst "+(e.input.length-e.maximum)+" tegn mindre"},inputTooShort:function(e){return"Angiv venligst "+(e.minimum-e.input.length)+" tegn mere"},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var n="Du kan kun vælge "+e.maximum+" emne";return 1!=e.maximum&&(n+="r"),n},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"},removeAllItems:function(){return"Fjern alle elementer"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hy.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/hy",[],function(){return{errorLoading:function(){return"Արդյունքները հնարավոր չէ բեռնել։"},inputTooLong:function(n){return"Խնդրում ենք հեռացնել "+(n.input.length-n.maximum)+" նշան"},inputTooShort:function(n){return"Խնդրում ենք մուտքագրել "+(n.minimum-n.input.length)+" կամ ավել նշաններ"},loadingMore:function(){return"Բեռնվում են նոր արդյունքներ․․․"},maximumSelected:function(n){return"Դուք կարող եք ընտրել առավելագույնը "+n.maximum+" կետ"},noResults:function(){return"Արդյունքներ չեն գտնվել"},searching:function(){return"Որոնում․․․"},removeAllItems:function(){return"Հեռացնել բոլոր տարրերը"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(n){return"لطفاً "+(n.input.length-n.maximum)+" کاراکتر را حذف نمایید"},inputTooShort:function(n){return"لطفاً تعداد "+(n.minimum-n.input.length)+" کاراکتر یا بیشتر وارد نمایید"},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(n){return"شما تنها میتوانید "+n.maximum+" آیتم را انتخاب نمایید"},noResults:function(){return"هیچ نتیجهای یافت نشد"},searching:function(){return"در حال جستجو..."},removeAllItems:function(){return"همه موارد را حذف کنید"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /core/migrations/0001_initial.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.1.7 on 2023-03-27 11:07 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | initial = True 8 | 9 | dependencies = [] 10 | 11 | operations = [ 12 | migrations.CreateModel( 13 | name="Company", 14 | fields=[ 15 | ( 16 | "id", 17 | models.BigAutoField( 18 | auto_created=True, 19 | primary_key=True, 20 | serialize=False, 21 | verbose_name="ID", 22 | ), 23 | ), 24 | ("name", models.CharField(max_length=128, unique=True)), 25 | ("address", models.TextField()), 26 | ], 27 | ), 28 | ] 29 | -------------------------------------------------------------------------------- /core/migrations/0003_task.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.1.7 on 2023-03-28 09:38 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | dependencies = [ 8 | ("core", "0002_project"), 9 | ] 10 | 11 | operations = [ 12 | migrations.CreateModel( 13 | name="Task", 14 | fields=[ 15 | ( 16 | "id", 17 | models.BigAutoField( 18 | auto_created=True, 19 | primary_key=True, 20 | serialize=False, 21 | verbose_name="ID", 22 | ), 23 | ), 24 | ("text", models.TextField()), 25 | ("done", models.BooleanField(default=False)), 26 | ], 27 | ), 28 | ] 29 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var n=e.input.length-e.maximum,r="Please delete "+n+" character";return 1!=n&&(r+="s"),r},inputTooShort:function(e){return"Please enter "+(e.minimum-e.input.length)+" or more characters"},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var n="You can only select "+e.maximum+" item";return 1!=e.maximum&&(n+="s"),n},noResults:function(){return"No results found"},searching:function(){return"Searching…"},removeAllItems:function(){return"Remove all items"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(n){var e=n.input.length-n.maximum,r=e+" अक्षर को हटा दें";return e>1&&(r=e+" अक्षरों को हटा दें "),r},inputTooShort:function(n){return"कृपया "+(n.minimum-n.input.length)+" या अधिक अक्षर दर्ज करें"},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(n){return"आप केवल "+n.maximum+" आइटम का चयन कर सकते हैं"},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."},removeAllItems:function(){return"सभी वस्तुओं को हटा दें"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(n){var e=n.input.length-n.maximum,r="נא למחוק ";return r+=1===e?"תו אחד":e+" תווים"},inputTooShort:function(n){var e=n.minimum-n.input.length,r="נא להכניס ";return r+=1===e?"תו אחד":e+" תווים",r+=" או יותר"},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(n){var e="באפשרותך לבחור עד ";return 1===n.maximum?e+="פריט אחד":e+=n.maximum+" פריטים",e},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"},removeAllItems:function(){return"הסר את כל הפריטים"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/hr",[],function(){function n(n){var e=" "+n+" znak";return n%10<5&&n%10>0&&(n%100<5||n%100>19)?n%10>1&&(e+="a"):e+="ova",e}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(e){return"Unesite "+n(e.input.length-e.maximum)},inputTooShort:function(e){return"Unesite još "+n(e.minimum-e.input.length)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(n){return"Maksimalan broj odabranih stavki je "+n.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"},removeAllItems:function(){return"Ukloni sve stavke"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/de",[],function(){return{errorLoading:function(){return"Die Ergebnisse konnten nicht geladen werden."},inputTooLong:function(e){return"Bitte "+(e.input.length-e.maximum)+" Zeichen weniger eingeben"},inputTooShort:function(e){return"Bitte "+(e.minimum-e.input.length)+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var n="Sie können nur "+e.maximum+" Element";return 1!=e.maximum&&(n+="e"),n+=" auswählen"},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"},removeAllItems:function(){return"Entferne alle Elemente"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/af.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/af",[],function(){return{errorLoading:function(){return"Die resultate kon nie gelaai word nie."},inputTooLong:function(e){var n=e.input.length-e.maximum,r="Verwyders asseblief "+n+" character";return 1!=n&&(r+="s"),r},inputTooShort:function(e){return"Voer asseblief "+(e.minimum-e.input.length)+" of meer karakters"},loadingMore:function(){return"Meer resultate word gelaai…"},maximumSelected:function(e){var n="Kies asseblief net "+e.maximum+" item";return 1!=e.maximum&&(n+="s"),n},noResults:function(){return"Geen resultate gevind"},searching:function(){return"Besig…"},removeAllItems:function(){return"Verwyder alle items"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return n+=1==t?"karaktere bat":t+" karaktere",n+=" gutxiago"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return n+=1==t?"karaktere bat":t+" karaktere",n+=" gehiago"},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return 1===e.maximum?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"},removeAllItems:function(){return"Kendu elementu guztiak"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/mk",[],function(){return{inputTooLong:function(n){var e=(n.input.length,n.maximum,"Ве молиме внесете "+n.maximum+" помалку карактер");return 1!==n.maximum&&(e+="и"),e},inputTooShort:function(n){var e=(n.minimum,n.input.length,"Ве молиме внесете уште "+n.maximum+" карактер");return 1!==n.maximum&&(e+="и"),e},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(n){var e="Можете да изберете само "+n.maximum+" ставк";return 1===n.maximum?e+="а":e+="и",e},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"},removeAllItems:function(){return"Отстрани ги сите предмети"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var n=e.input.length-e.maximum,r="Apague "+n+" caracter";return 1!=n&&(r+="es"),r},inputTooShort:function(e){return"Digite "+(e.minimum-e.input.length)+" ou mais caracteres"},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var n="Você só pode selecionar "+e.maximum+" ite";return 1==e.maximum?n+="m":n+="ns",n},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"},removeAllItems:function(){return"Remover todos os itens"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var r=e.input.length-e.maximum,n="Por favor apague "+r+" ";return n+=1!=r?"caracteres":"caractere"},inputTooShort:function(e){return"Introduza "+(e.minimum-e.input.length)+" ou mais caracteres"},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var r="Apenas pode seleccionar "+e.maximum+" ";return r+=1!=e.maximum?"itens":"item"},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"},removeAllItems:function(){return"Remover todos os itens"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bn.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/bn",[],function(){return{errorLoading:function(){return"ফলাফলগুলি লোড করা যায়নি।"},inputTooLong:function(n){var e=n.input.length-n.maximum,u="অনুগ্রহ করে "+e+" টি অক্ষর মুছে দিন।";return 1!=e&&(u="অনুগ্রহ করে "+e+" টি অক্ষর মুছে দিন।"),u},inputTooShort:function(n){return n.minimum-n.input.length+" টি অক্ষর অথবা অধিক অক্ষর লিখুন।"},loadingMore:function(){return"আরো ফলাফল লোড হচ্ছে ..."},maximumSelected:function(n){var e=n.maximum+" টি আইটেম নির্বাচন করতে পারবেন।";return 1!=n.maximum&&(e=n.maximum+" টি আইটেম নির্বাচন করতে পারবেন।"),e},noResults:function(){return"কোন ফলাফল পাওয়া যায়নি।"},searching:function(){return"অনুসন্ধান করা হচ্ছে ..."}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/lv",[],function(){function e(e,n,u,i){return 11===e?n:e%10==1?u:i}return{inputTooLong:function(n){var u=n.input.length-n.maximum,i="Lūdzu ievadiet par "+u;return(i+=" simbol"+e(u,"iem","u","iem"))+" mazāk"},inputTooShort:function(n){var u=n.minimum-n.input.length,i="Lūdzu ievadiet vēl "+u;return i+=" simbol"+e(u,"us","u","us")},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(n){var u="Jūs varat izvēlēties ne vairāk kā "+n.maximum;return u+=" element"+e(n.maximum,"us","u","us")},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"},removeAllItems:function(){return"Noņemt visus vienumus"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ca.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var n=e.input.length-e.maximum,r="Si us plau, elimina "+n+" car";return r+=1==n?"àcter":"àcters"},inputTooShort:function(e){var n=e.minimum-e.input.length,r="Si us plau, introdueix "+n+" car";return r+=1==n?"àcter":"àcters"},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var n="Només es pot seleccionar "+e.maximum+" element";return 1!=e.maximum&&(n+="s"),n},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"},removeAllItems:function(){return"Treu tots els elements"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ps.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var n=jQuery.fn.select2.amd;n.define("select2/i18n/ps",[],function(){return{errorLoading:function(){return"پايلي نه سي ترلاسه کېدای"},inputTooLong:function(n){var e=n.input.length-n.maximum,r="د مهربانۍ لمخي "+e+" توری ړنګ کړئ";return 1!=e&&(r=r.replace("توری","توري")),r},inputTooShort:function(n){return"لږ تر لږه "+(n.minimum-n.input.length)+" يا ډېر توري وليکئ"},loadingMore:function(){return"نوري پايلي ترلاسه کيږي..."},maximumSelected:function(n){var e="تاسو يوازي "+n.maximum+" قلم په نښه کولای سی";return 1!=n.maximum&&(e=e.replace("قلم","قلمونه")),e},noResults:function(){return"پايلي و نه موندل سوې"},searching:function(){return"لټول کيږي..."},removeAllItems:function(){return"ټول توکي لرې کړئ"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sq.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/sq",[],function(){return{errorLoading:function(){return"Rezultatet nuk mund të ngarkoheshin."},inputTooLong:function(e){var n=e.input.length-e.maximum,t="Të lutem fshi "+n+" karakter";return 1!=n&&(t+="e"),t},inputTooShort:function(e){return"Të lutem shkruaj "+(e.minimum-e.input.length)+" ose më shumë karaktere"},loadingMore:function(){return"Duke ngarkuar më shumë rezultate…"},maximumSelected:function(e){var n="Mund të zgjedhësh vetëm "+e.maximum+" element";return 1!=e.maximum&&(n+="e"),n},noResults:function(){return"Nuk u gjet asnjë rezultat"},searching:function(){return"Duke kërkuar…"},removeAllItems:function(){return"Hiq të gjitha sendet"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/it.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var n=e.input.length-e.maximum,t="Per favore cancella "+n+" caratter";return t+=1!==n?"i":"e"},inputTooShort:function(e){return"Per favore inserisci "+(e.minimum-e.input.length)+" o più caratteri"},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var n="Puoi selezionare solo "+e.maximum+" element";return 1!==e.maximum?n+="i":n+="o",n},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"},removeAllItems:function(){return"Rimuovi tutti gli oggetti"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/nl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | !function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){return"Gelieve "+(e.input.length-e.maximum)+" karakters te verwijderen"},inputTooShort:function(e){return"Gelieve "+(e.minimum-e.input.length)+" of meer karakters in te voeren"},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var n=1==e.maximum?"kan":"kunnen",r="Er "+n+" maar "+e.maximum+" item";return 1!=e.maximum&&(r+="s"),r+=" worden geselecteerd"},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"},removeAllItems:function(){return"Verwijder alle items"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /templates/partials/_fragment_explainer.html: -------------------------------------------------------------------------------- 1 | {% load core_tags %} 2 | {% fragment_explainer as fe %} 3 |{{ up.target }}
13 | {% else %}
14 | Full page load
15 | {% endif %}
16 |
17 | {{ fe.template }}
26 |
27 | {{ fe.view }}
34 |
35 |
9 | Each suggestion button has an [up-emit="name:select"] attribute.
10 | When clicked it emits an name:select event on
11 | the popup element.
12 |
14 | The link that opened this popup is awaiting this event
15 | via its [up-accept-event] attribute. When the element
16 | is observed, the popup is automatically closed and the name copied
17 | into the project form.
18 |
16 | This screen shows many task boxes with the same selector
17 | (<div class="task">).
18 |
20 | Note how changing a task will only update a single task box. 21 |
22 | {% endtourdot %} 23 | {% endif %} 24 || Name | 26 |Company | 27 |
|---|---|
| 34 | {{ project.name }} 39 | 40 | | 41 |42 | {{ project.company.name }} 43 | | 44 |
13 | The Clear done button has an [up-target=".tasks"] attribute.
14 | Clicking the link will only update the <div class="tasks"> element.
15 |
17 | Other HTML from the server response is discarded. 18 |
19 | {% endtourdot %} 20 | 24 | 25 | New task 32 |12 | This overlay reuses the template that is also used for the 13 | Projects 14 | section 15 | in the main navigation. 16 |
17 | {% endtourdot %} 18 | {% endif %} 19 |Note how the Edit link renders within this overlay.
23 |Links and forms always update their own layer unless another layer is targeted explicitly.
24 | {% endtourdot %} 25 | 26 | Edit 27 | 31 | 32 |