├── 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 | 2 | 3 | 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 |
2 | {% for message in messages %} 3 |
4 | {{ message }} 5 |
6 | {% endfor %} 7 |
-------------------------------------------------------------------------------- /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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 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 | 2 | 3 | 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 | 2 | 3 | 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 | 2 | 3 | 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 |
7 | {% csrf_token %} 8 |
9 |
10 | {{ form|crispy }} 11 |
12 |
13 | 14 |
15 |
16 |
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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 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 |
4 | 5 |
6 | Last update: 7 |
8 | 9 | 10 | 11 | {% if up %} 12 | Fragment {{ up.target }} 13 | {% else %} 14 | Full page load 15 | {% endif %} 16 | 17 |
18 | 19 |
20 | 21 | Template: 22 |
23 | 24 | 25 | {{ fe.template }} 26 | 27 |
28 | 29 |
30 | View: 31 |
32 | 33 | {{ fe.view }} 34 | 35 |
36 | 37 |
38 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ne.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/ne",[],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/fr.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/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var n=e.input.length-e.maximum;return"Supprimez "+n+" caractère"+(n>1?"s":"")},inputTooShort:function(e){var n=e.minimum-e.input.length;return"Saisissez au moins "+n+" caractère"+(n>1?"s":"")},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){return"Vous pouvez seulement sélectionner "+e.maximum+" élément"+(e.maximum>1?"s":"")},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"},removeAllItems:function(){return"Supprimer tous les éléments"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /core/templates/core/company_table_filter.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load core_tags crispy_forms_tags %} 3 | {% load render_table from django_tables2 %} 4 | 5 | {% block content %} 6 |
7 |
8 |

All companies

9 |
10 |
11 |
12 |
13 |
14 | {{ filter.form|crispy }} 15 | 16 | Reset 17 |
18 |
19 |
20 | 21 |
22 |
23 |
24 | {% render_table table %} 25 |
26 |
27 |
28 | 29 | {% endblock %} -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/es.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/es",[],function(){return{errorLoading:function(){return"No se pudieron cargar los resultados"},inputTooLong:function(e){var n=e.input.length-e.maximum,r="Por favor, elimine "+n+" car";return r+=1==n?"ácter":"acteres"},inputTooShort:function(e){var n=e.minimum-e.input.length,r="Por favor, introduzca "+n+" car";return r+=1==n?"ácter":"acteres"},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var n="Sólo puede seleccionar "+e.maximum+" elemento";return 1!=e.maximum&&(n+="s"),n},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"},removeAllItems:function(){return"Eliminar todos los elementos"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/gl.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/gl",[],function(){return{errorLoading:function(){return"Non foi posíbel cargar os resultados."},inputTooLong:function(e){var n=e.input.length-e.maximum;return 1===n?"Elimine un carácter":"Elimine "+n+" caracteres"},inputTooShort:function(e){var n=e.minimum-e.input.length;return 1===n?"Engada un carácter":"Engada "+n+" caracteres"},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){return 1===e.maximum?"Só pode seleccionar un elemento":"Só pode seleccionar "+e.maximum+" elementos"},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"},removeAllItems:function(){return"Elimina todos os elementos"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sl.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/sl",[],function(){return{errorLoading:function(){return"Zadetkov iskanja ni bilo mogoče naložiti."},inputTooLong:function(e){var n=e.input.length-e.maximum,t="Prosim zbrišite "+n+" znak";return 2==n?t+="a":1!=n&&(t+="e"),t},inputTooShort:function(e){var n=e.minimum-e.input.length,t="Prosim vpišite še "+n+" znak";return 2==n?t+="a":1!=n&&(t+="e"),t},loadingMore:function(){return"Nalagam več zadetkov…"},maximumSelected:function(e){var n="Označite lahko največ "+e.maximum+" predmet";return 2==e.maximum?n+="a":1!=e.maximum&&(n+="e"),n},noResults:function(){return"Ni zadetkov."},searching:function(){return"Iščem…"},removeAllItems:function(){return"Odstranite vse elemente"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- 1 | # fly.toml file generated for unpoly-demo on 2023-03-31T22:49:15+03:00 2 | 3 | app = "unpoly-demo" 4 | kill_signal = "SIGINT" 5 | kill_timeout = 5 6 | processes = [] 7 | 8 | [env] 9 | PORT = "8080" 10 | 11 | [experimental] 12 | auto_rollback = true 13 | 14 | [[services]] 15 | http_checks = [] 16 | internal_port = 8080 17 | processes = ["app"] 18 | protocol = "tcp" 19 | script_checks = [] 20 | [services.concurrency] 21 | hard_limit = 25 22 | soft_limit = 20 23 | type = "connections" 24 | 25 | [[services.ports]] 26 | force_https = true 27 | handlers = ["http"] 28 | port = 80 29 | 30 | [[services.ports]] 31 | handlers = ["tls", "http"] 32 | port = 443 33 | 34 | [[services.tcp_checks]] 35 | grace_period = "1s" 36 | interval = "15s" 37 | restart_limit = 0 38 | timeout = "2s" 39 | 40 | [[statics]] 41 | guest_path = "/app/staticfiles" 42 | url_prefix = "/static/" 43 | -------------------------------------------------------------------------------- /static/unpoly/unpoly-bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | (()=>{var o={79:(o,e,r)=>{"use strict";r.r(e)}},e={};function r(p){var t=e[p];if(void 0!==t)return t.exports;var n=e[p]={exports:{}};return o[p](n,n.exports,r),n.exports}r.r=o=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(o,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(o,"__esModule",{value:!0})},up.feedback.config.currentClasses.push("active"),up.feedback.config.navSelectors.push(".nav",".navbar"),up.form.config.groupSelectors.unshift(".form-group"),up.viewport.config.fixedTop.push(".navbar.fixed-top"),up.viewport.config.fixedBottom.push(".navbar.fixed-bottom"),up.viewport.config.anchoredRight.push(".navbar.fixed-top",".navbar.fixed-bottom"),up.fragment.config.badTargetClasses.push("row",/^col(-xs|-sm|-md|-lg|-xl)?(-\d+)?$/,/^[mp][tblrxy]?-\d+$/),up.layer.config.foreignOverlaySelectors.push(".modal:not(up-modal)",".popover:not(up-popup)",".dropdown-menu:not(up-popup)"),r(79)})(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ro.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/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return 1!==t&&(n+="e"),n},inputTooShort:function(e){return"Vă rugăm să introduceți "+(e.minimum-e.input.length)+" sau mai multe caractere"},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",1!==e.maximum&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"},removeAllItems:function(){return"Eliminați toate elementele"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/unpoly/unpoly-bootstrap4.min.js: -------------------------------------------------------------------------------- 1 | (()=>{var o={79:(o,e,r)=>{"use strict";r.r(e)}},e={};function r(p){var t=e[p];if(void 0!==t)return t.exports;var n=e[p]={exports:{}};return o[p](n,n.exports,r),n.exports}r.r=o=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(o,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(o,"__esModule",{value:!0})},up.feedback.config.currentClasses.push("active"),up.feedback.config.navSelectors.push(".nav",".navbar"),up.form.config.groupSelectors.unshift(".form-group"),up.viewport.config.fixedTop.push(".navbar.fixed-top"),up.viewport.config.fixedBottom.push(".navbar.fixed-bottom"),up.viewport.config.anchoredRight.push(".navbar.fixed-top",".navbar.fixed-bottom"),up.fragment.config.badTargetClasses.push("row",/^col(-xs|-sm|-md|-lg|-xl)?(-\d+)?$/,/^[mp][tblrxy]?-\d+$/),up.layer.config.foreignOverlaySelectors.push(".modal:not(up-modal)",".popover:not(up-popup)",".dropdown-menu:not(up-popup)"),r(79)})(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/lt.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/lt",[],function(){function n(n,e,i,t){return n%10==1&&(n%100<11||n%100>19)?e:n%10>=2&&n%10<=9&&(n%100<11||n%100>19)?i:t}return{inputTooLong:function(e){var i=e.input.length-e.maximum,t="Pašalinkite "+i+" simbol";return t+=n(i,"į","ius","ių")},inputTooShort:function(e){var i=e.minimum-e.input.length,t="Įrašykite dar "+i+" simbol";return t+=n(i,"į","ius","ių")},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(e){var i="Jūs galite pasirinkti tik "+e.maximum+" element";return i+=n(e.maximum,"ą","us","ų")},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"},removeAllItems:function(){return"Pašalinti visus elementus"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/pl.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/pl",[],function(){var n=["znak","znaki","znaków"],e=["element","elementy","elementów"],r=function(n,e){return 1===n?e[0]:n>1&&n<=4?e[1]:n>=5?e[2]:void 0};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Usuń "+t+" "+r(t,n)},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Podaj przynajmniej "+t+" "+r(t,n)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(n){return"Możesz zaznaczyć tylko "+n.maximum+" "+r(n.maximum,e)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"},removeAllItems:function(){return"Usuń wszystkie przedmioty"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/django_extensions/css/jquery.autocomplete.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @fileOverview CSS for jquery-autocomplete, the jQuery Autocompleter 3 | * @author Dylan Verheul 4 | * @license MIT | GPL | Apache 2.0, see LICENSE.txt 5 | * @see https://github.com/dyve/jquery-autocomplete 6 | */ 7 | .acResults { 8 | padding: 0px; 9 | border: 1px solid WindowFrame; 10 | background-color: Window; 11 | overflow: hidden; 12 | } 13 | 14 | .acResults ul { 15 | margin: 0px; 16 | padding: 0px; 17 | list-style-position: outside; 18 | list-style: none; 19 | } 20 | 21 | .acResults ul li { 22 | margin: 0px; 23 | padding: 2px 5px; 24 | cursor: pointer; 25 | display: block; 26 | font: menu; 27 | font-size: 12px; 28 | overflow: hidden; 29 | } 30 | 31 | .acLoading { 32 | background : url('../img/indicator.gif') right center no-repeat; 33 | } 34 | 35 | .acSelect { 36 | background-color: Highlight; 37 | color: HighlightText; 38 | } 39 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/el.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/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(n){var e=n.input.length-n.maximum,u="Παρακαλώ διαγράψτε "+e+" χαρακτήρ";return 1==e&&(u+="α"),1!=e&&(u+="ες"),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+="ή"),1!=n.maximum&&(e+="ές"),e},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"},removeAllItems:function(){return"Καταργήστε όλα τα στοιχεία"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr.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/sr",[],function(){function n(n,e,r,t){return n%10==1&&n%100!=11?e:n%10>=2&&n%10<=4&&(n%100<12||n%100>14)?r:t}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(e){var r=e.input.length-e.maximum,t="Obrišite "+r+" simbol";return t+=n(r,"","a","a")},inputTooShort:function(e){var r=e.minimum-e.input.length,t="Ukucajte bar još "+r+" simbol";return t+=n(r,"","a","a")},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(e){var r="Možete izabrati samo "+e.maximum+" stavk";return r+=n(e.maximum,"u","e","i")},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"},removeAllItems:function(){return"Уклоните све ставке"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/uk.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/uk",[],function(){function n(n,e,u,r){return n%100>10&&n%100<15?r:n%10==1?e:n%10>1&&n%10<5?u:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(e){return"Будь ласка, видаліть "+(e.input.length-e.maximum)+" "+n(e.maximum,"літеру","літери","літер")},inputTooShort:function(n){return"Будь ласка, введіть "+(n.minimum-n.input.length)+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(e){return"Ви можете вибрати лише "+e.maximum+" "+n(e.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"},removeAllItems:function(){return"Видалити всі елементи"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/bs.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/bs",[],function(){function e(e,n,r,t){return e%10==1&&e%100!=11?n:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?r:t}return{errorLoading:function(){return"Preuzimanje nije uspijelo."},inputTooLong:function(n){var r=n.input.length-n.maximum,t="Obrišite "+r+" simbol";return t+=e(r,"","a","a")},inputTooShort:function(n){var r=n.minimum-n.input.length,t="Ukucajte bar još "+r+" simbol";return t+=e(r,"","a","a")},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(n){var r="Možete izabrati samo "+n.maximum+" stavk";return r+=e(n.maximum,"u","e","i")},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"},removeAllItems:function(){return"Uklonite sve stavke"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sr-Cyrl.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/sr-Cyrl",[],function(){function n(n,e,r,u){return n%10==1&&n%100!=11?e:n%10>=2&&n%10<=4&&(n%100<12||n%100>14)?r:u}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(e){var r=e.input.length-e.maximum,u="Обришите "+r+" симбол";return u+=n(r,"","а","а")},inputTooShort:function(e){var r=e.minimum-e.input.length,u="Укуцајте бар још "+r+" симбол";return u+=n(r,"","а","а")},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(e){var r="Можете изабрати само "+e.maximum+" ставк";return r+=n(e.maximum,"у","е","и")},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"},removeAllItems:function(){return"Уклоните све ставке"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/ru.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/ru",[],function(){function n(n,e,r,u){return n%10<5&&n%10>0&&n%100<5||n%100>20?n%10>1?r:e:u}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(e){var r=e.input.length-e.maximum,u="Пожалуйста, введите на "+r+" символ";return u+=n(r,"","a","ов"),u+=" меньше"},inputTooShort:function(e){var r=e.minimum-e.input.length,u="Пожалуйста, введите ещё хотя бы "+r+" символ";return u+=n(r,"","a","ов")},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(e){var r="Вы можете выбрать не более "+e.maximum+" элемент";return r+=n(e.maximum,"","a","ов")},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"},removeAllItems:function(){return"Удалить все элементы"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/hsb.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/hsb",[],function(){var n=["znamješko","znamješce","znamješka","znamješkow"],e=["zapisk","zapiskaj","zapiski","zapiskow"],u=function(n,e){return 1===n?e[0]:2===n?e[1]:n>2&&n<=4?e[2]:n>=5?e[3]:void 0};return{errorLoading:function(){return"Wuslědki njedachu so začitać."},inputTooLong:function(e){var a=e.input.length-e.maximum;return"Prošu zhašej "+a+" "+u(a,n)},inputTooShort:function(e){var a=e.minimum-e.input.length;return"Prošu zapodaj znajmjeńša "+a+" "+u(a,n)},loadingMore:function(){return"Dalše wuslědki so začitaja…"},maximumSelected:function(n){return"Móžeš jenož "+n.maximum+" "+u(n.maximum,e)+"wubrać"},noResults:function(){return"Žane wuslědki namakane"},searching:function(){return"Pyta so…"},removeAllItems:function(){return"Remove all items"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/dsb.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/dsb",[],function(){var n=["znamuško","znamušce","znamuška","znamuškow"],e=["zapisk","zapiska","zapiski","zapiskow"],u=function(n,e){return 1===n?e[0]:2===n?e[1]:n>2&&n<=4?e[2]:n>=5?e[3]:void 0};return{errorLoading:function(){return"Wuslědki njejsu se dali zacytaś."},inputTooLong:function(e){var a=e.input.length-e.maximum;return"Pšosym lašuj "+a+" "+u(a,n)},inputTooShort:function(e){var a=e.minimum-e.input.length;return"Pšosym zapódaj nanejmjenjej "+a+" "+u(a,n)},loadingMore:function(){return"Dalšne wuslědki se zacytaju…"},maximumSelected:function(n){return"Móžoš jano "+n.maximum+" "+u(n.maximum,e)+"wubraś."},noResults:function(){return"Žedne wuslědki namakane"},searching:function(){return"Pyta se…"},removeAllItems:function(){return"Remove all items"}}}),n.define,n.require}(); -------------------------------------------------------------------------------- /unpoly_demo/urls.py: -------------------------------------------------------------------------------- 1 | """unpoly_demo URL Configuration 2 | 3 | The `urlpatterns` list routes URLs to views. For more information please see: 4 | https://docs.djangoproject.com/en/4.1/topics/http/urls/ 5 | Examples: 6 | Function views 7 | 1. Add an import: from my_app import views 8 | 2. Add a URL to urlpatterns: path('', views.home, name='home') 9 | Class-based views 10 | 1. Add an import: from other_app.views import Home 11 | 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 12 | Including another URLconf 13 | 1. Import the include() function: from django.urls import include, path 14 | 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 15 | """ 16 | from django.contrib import admin 17 | from django.urls import include, path 18 | from django.views.generic import TemplateView 19 | 20 | urlpatterns = [ 21 | path("", TemplateView.as_view(template_name="home.html")), 22 | path("admin/", admin.site.urls), 23 | path('core/', include('core.urls')) 24 | ] 25 | -------------------------------------------------------------------------------- /core/templates/core/project_suggest_name.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load core_tags %} 3 | {% block content %} 4 | {% for n in names %} 5 | 6 | {% if forloop.counter0 == 0 %} 7 | {% tourdot %} 8 |

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 |

13 |

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 |

19 | {% endtourdot %} 20 | {% endif %} 21 | 22 | 26 | {{ n }} 27 | 28 | 29 | {% endfor %} 30 | {% endblock %} -------------------------------------------------------------------------------- /staticfiles/admin/js/cancel.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | { 3 | // Call function fn when the DOM is loaded and ready. If it is already 4 | // loaded, call the function now. 5 | // http://youmightnotneedjquery.com/#ready 6 | function ready(fn) { 7 | if (document.readyState !== 'loading') { 8 | fn(); 9 | } else { 10 | document.addEventListener('DOMContentLoaded', fn); 11 | } 12 | } 13 | 14 | ready(function() { 15 | function handleClick(event) { 16 | event.preventDefault(); 17 | const params = new URLSearchParams(window.location.search); 18 | if (params.has('_popup')) { 19 | window.close(); // Close the popup. 20 | } else { 21 | window.history.back(); // Otherwise, go back. 22 | } 23 | } 24 | 25 | document.querySelectorAll('.cancel-link').forEach(function(el) { 26 | el.addEventListener('click', handleClick); 27 | }); 28 | }); 29 | } 30 | -------------------------------------------------------------------------------- /core/templates/core/_task_partial.html: -------------------------------------------------------------------------------- 1 | {% load core_tags %} 2 |
3 |
4 |
5 | {{ task.text }} 6 |
7 |
8 | Edit 9 |
10 | {% csrf_token %} 11 | 12 |
13 | {% if forloop.counter0 == 0 %} 14 | {% tourdot %} 15 |

16 | This screen shows many task boxes with the same selector 17 | (<div class="task">). 18 |

19 |

20 | Note how changing a task will only update a single task box. 21 |

22 | {% endtourdot %} 23 | {% endif %} 24 |
25 |
26 |
-------------------------------------------------------------------------------- /staticfiles/admin/js/filters.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Persist changelist filters state (collapsed/expanded). 3 | */ 4 | 'use strict'; 5 | { 6 | // Init filters. 7 | let filters = JSON.parse(sessionStorage.getItem('django.admin.filtersState')); 8 | 9 | if (!filters) { 10 | filters = {}; 11 | } 12 | 13 | Object.entries(filters).forEach(([key, value]) => { 14 | const detailElement = document.querySelector(`[data-filter-title='${CSS.escape(key)}']`); 15 | 16 | // Check if the filter is present, it could be from other view. 17 | if (detailElement) { 18 | value ? detailElement.setAttribute('open', '') : detailElement.removeAttribute('open'); 19 | } 20 | }); 21 | 22 | // Save filter state when clicks. 23 | const details = document.querySelectorAll('details'); 24 | details.forEach(detail => { 25 | detail.addEventListener('toggle', event => { 26 | filters[`${event.target.dataset.filterTitle}`] = detail.open; 27 | sessionStorage.setItem('django.admin.filtersState', JSON.stringify(filters)); 28 | }); 29 | }); 30 | } 31 | -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticfiles/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /staticfiles/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | from django.urls import reverse 3 | from django.core.validators import MinValueValidator 4 | 5 | 6 | class Company(models.Model): 7 | name = models.CharField(max_length=128, unique=True) 8 | address = models.TextField() 9 | 10 | def get_absolute_url(self): 11 | return reverse("company-detail", kwargs={"pk": self.pk}) 12 | 13 | def __str__(self): 14 | return self.name 15 | 16 | 17 | class Project(models.Model): 18 | name = models.CharField(max_length=128, unique=True) 19 | company = models.ForeignKey(Company, on_delete=models.CASCADE) 20 | budget = models.DecimalField( 21 | max_digits=10, decimal_places=2, validators=[MinValueValidator(100)] 22 | ) 23 | 24 | def get_absolute_url(self): 25 | return reverse("project-detail", kwargs={"pk": self.pk}) 26 | 27 | def __str__(self): 28 | return self.name 29 | 30 | 31 | class Task(models.Model): 32 | text = models.TextField() 33 | done = models.BooleanField(default=False) 34 | 35 | def get_absolute_url(self): 36 | return reverse("task-detail", kwargs={"pk": self.pk}) -------------------------------------------------------------------------------- /staticfiles/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /staticfiles/admin/img/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Code Charm Ltd 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /staticfiles/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/jquery/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright OpenJS Foundation and other contributors, https://openjsf.org/ 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining 4 | a copy of this software and associated documentation files (the 5 | "Software"), to deal in the Software without restriction, including 6 | without limitation the rights to use, copy, modify, merge, publish, 7 | distribute, sublicense, and/or sell copies of the Software, and to 8 | permit persons to whom the Software is furnished to do so, subject to 9 | the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be 12 | included in all copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 17 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 18 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 19 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 20 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/xregexp/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright (c) 2007-2017 Steven Levithan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /staticfiles/admin/js/autocomplete.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | { 3 | const $ = django.jQuery; 4 | 5 | $.fn.djangoAdminSelect2 = function() { 6 | $.each(this, function(i, element) { 7 | $(element).select2({ 8 | ajax: { 9 | data: (params) => { 10 | return { 11 | term: params.term, 12 | page: params.page, 13 | app_label: element.dataset.appLabel, 14 | model_name: element.dataset.modelName, 15 | field_name: element.dataset.fieldName 16 | }; 17 | } 18 | } 19 | }); 20 | }); 21 | return this; 22 | }; 23 | 24 | $(function() { 25 | // Initialize all autocomplete widgets except the one in the template 26 | // form used when a new formset is added. 27 | $('.admin-autocomplete').not('[name*=__prefix__]').djangoAdminSelect2(); 28 | }); 29 | 30 | document.addEventListener('formset:added', (event) => { 31 | $(event.target).find('.admin-autocomplete').djangoAdminSelect2(); 32 | }); 33 | } 34 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- 1 | {% load static %} 2 | 3 | 4 | 5 | Unpoly Demo 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 | 18 | 19 | 20 | 21 | {% include "partials/_nav.html" %} 22 | 23 |
24 | {% include "partials/_messages.html" %} 25 | {% block content %} 26 | {% endblock %} 27 | 28 | {% include "partials/_fragment_explainer.html" %} 29 | 30 |
31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/cs.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/cs",[],function(){function e(e,n){switch(e){case 2:return n?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(n){var t=n.input.length-n.maximum;return 1==t?"Prosím, zadejte o jeden znak méně.":t<=4?"Prosím, zadejte o "+e(t,!0)+" znaky méně.":"Prosím, zadejte o "+t+" znaků méně."},inputTooShort:function(n){var t=n.minimum-n.input.length;return 1==t?"Prosím, zadejte ještě jeden znak.":t<=4?"Prosím, zadejte ještě další "+e(t,!0)+" znaky.":"Prosím, zadejte ještě dalších "+t+" znaků."},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(n){var t=n.maximum;return 1==t?"Můžete zvolit jen jednu položku.":t<=4?"Můžete zvolit maximálně "+e(t,!1)+" položky.":"Můžete zvolit maximálně "+t+" položek."},noResults:function(){return"Nenalezeny žádné položky."},searching:function(){return"Vyhledávání…"},removeAllItems:function(){return"Odstraňte všechny položky"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /staticfiles/admin/css/vendor/select2/LICENSE-SELECT2.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2012-2017 Kevin Brown, Igor Vaynberg, and Select2 contributors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /staticfiles/admin/css/login.css: -------------------------------------------------------------------------------- 1 | /* LOGIN FORM */ 2 | 3 | .login { 4 | background: var(--darkened-bg); 5 | height: auto; 6 | } 7 | 8 | .login #header { 9 | height: auto; 10 | padding: 15px 16px; 11 | justify-content: center; 12 | } 13 | 14 | .login #header h1 { 15 | font-size: 1.125rem; 16 | margin: 0; 17 | } 18 | 19 | .login #header h1 a { 20 | color: var(--header-link-color); 21 | } 22 | 23 | .login #content { 24 | padding: 20px 20px 0; 25 | } 26 | 27 | .login #container { 28 | background: var(--body-bg); 29 | border: 1px solid var(--hairline-color); 30 | border-radius: 4px; 31 | overflow: hidden; 32 | width: 28em; 33 | min-width: 300px; 34 | margin: 100px auto; 35 | height: auto; 36 | } 37 | 38 | .login .form-row { 39 | padding: 4px 0; 40 | } 41 | 42 | .login .form-row label { 43 | display: block; 44 | line-height: 2em; 45 | } 46 | 47 | .login .form-row #id_username, .login .form-row #id_password { 48 | padding: 8px; 49 | width: 100%; 50 | box-sizing: border-box; 51 | } 52 | 53 | .login .submit-row { 54 | padding: 1em 0 0 0; 55 | margin: 0; 56 | text-align: center; 57 | } 58 | 59 | .login .password-reset-link { 60 | text-align: center; 61 | } 62 | -------------------------------------------------------------------------------- /staticfiles/admin/js/vendor/select2/i18n/sk.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/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{errorLoading:function(){return"Výsledky sa nepodarilo načítať."},inputTooLong:function(n){var t=n.input.length-n.maximum;return 1==t?"Prosím, zadajte o jeden znak menej":t>=2&&t<=4?"Prosím, zadajte o "+e[t](!0)+" znaky menej":"Prosím, zadajte o "+t+" znakov menej"},inputTooShort:function(n){var t=n.minimum-n.input.length;return 1==t?"Prosím, zadajte ešte jeden znak":t<=4?"Prosím, zadajte ešte ďalšie "+e[t](!0)+" znaky":"Prosím, zadajte ešte ďalších "+t+" znakov"},loadingMore:function(){return"Načítanie ďalších výsledkov…"},maximumSelected:function(n){return 1==n.maximum?"Môžete zvoliť len jednu položku":n.maximum>=2&&n.maximum<=4?"Môžete zvoliť najviac "+e[n.maximum](!1)+" položky":"Môžete zvoliť najviac "+n.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"},removeAllItems:function(){return"Odstráňte všetky položky"}}}),e.define,e.require}(); -------------------------------------------------------------------------------- /templates/partials/_nav.html: -------------------------------------------------------------------------------- 1 | {% load core_tags %} 2 | 3 | 21 | -------------------------------------------------------------------------------- /core/templates/core/project_list.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load core_tags %} 3 | 4 | {% block content %} 5 |
6 |
7 |

All projects

8 |
9 | 10 |
11 | 12 | New project 18 | 19 |
20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | {% for project in object_list %} 32 | 33 | 41 | 44 | 45 | {% endfor %} 46 | 47 | 48 |
NameCompany
34 | {{ project.name }} 39 | 40 | 42 | {{ project.company.name }} 43 |
49 | 50 | {% endblock %} -------------------------------------------------------------------------------- /core/templates/core/task_list.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load core_tags %} 3 | 4 | {% block content %} 5 |
6 |
7 |

Open tasks

8 |
9 | 10 |
11 | {% tourdot %} 12 |

13 | The Clear done button has an [up-target=".tasks"] attribute. 14 | Clicking the link will only update the <div class="tasks"> element. 15 |

16 |

17 | Other HTML from the server response is discarded. 18 |

19 | {% endtourdot %} 20 |
21 | {% csrf_token %} 22 | 23 |
24 | 25 | New task 32 |
33 |
34 | 35 |
36 | {% for task in tasks %} 37 | {% include "core/_task_partial.html" %} 38 | {% endfor %} 39 |
40 | 41 | 42 | {% endblock %} -------------------------------------------------------------------------------- /core/migrations/0002_project.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 4.1.7 on 2023-03-28 06:24 2 | 3 | import django.core.validators 4 | from django.db import migrations, models 5 | import django.db.models.deletion 6 | 7 | 8 | class Migration(migrations.Migration): 9 | dependencies = [ 10 | ("core", "0001_initial"), 11 | ] 12 | 13 | operations = [ 14 | migrations.CreateModel( 15 | name="Project", 16 | fields=[ 17 | ( 18 | "id", 19 | models.BigAutoField( 20 | auto_created=True, 21 | primary_key=True, 22 | serialize=False, 23 | verbose_name="ID", 24 | ), 25 | ), 26 | ("name", models.CharField(max_length=128, unique=True)), 27 | ( 28 | "budget", 29 | models.DecimalField( 30 | decimal_places=2, 31 | max_digits=10, 32 | validators=[django.core.validators.MinValueValidator(100)], 33 | ), 34 | ), 35 | ( 36 | "company", 37 | models.ForeignKey( 38 | on_delete=django.db.models.deletion.CASCADE, to="core.company" 39 | ), 40 | ), 41 | ], 42 | ), 43 | ] 44 | -------------------------------------------------------------------------------- /core/templates/core/project_detail.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load core_tags crispy_forms_tags %} 3 | 4 | {% block content %} 5 |
6 |
7 |

Project {{ project.id }}

8 | 9 | {% if up.context.from_company %} 10 | {% tourdot %} 11 |

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 |
20 |
21 | {% tourdot %} 22 |

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 |
28 | {% csrf_token %} 29 | 30 |
31 | 32 |
33 |
34 | 35 |
36 |
Name
37 |
{{ project.name }}
38 |
Budget
39 |
{{ project.budget }}
40 |
Company
41 |
{{ project.company }}
42 | 43 |
44 | 45 | 46 | 47 | {% endblock %} -------------------------------------------------------------------------------- /core/templates/core/company_form.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | {% load core_tags crispy_forms_tags %} 3 | 4 | {% block content %} 5 | 6 | {% if form.instance.id %} 7 |

Edit company {{ form.instance }}

8 | {% else %} 9 |

New company

10 | {% endif %} 11 | 12 |
13 | {% csrf_token %} 14 | {% tourdot %} 15 |

The form is being validated on the server as you're completing fields.

16 |

Try entering a duplicate company name and focusing the next field..

17 | {% endtourdot %} 18 | {{ form|crispy }} 19 | 20 |
21 |
22 | 23 | {% if not for.instance.id %} 24 | {% tourdot %} 25 |

Saving an invalid form will re-render validation errors in the same overlay.

26 |

Links and forms always render in the same layer unless another layer is targeted explicitly.

27 | {% endtourdot %} 28 | {% endif %} 29 |
30 | 31 |
32 | {% if form.instance.id %} 33 | Cancel 34 | {% endif %} 35 |
36 |
37 |
38 | {% endblock %} -------------------------------------------------------------------------------- /staticfiles/admin/js/prepopulate.js: -------------------------------------------------------------------------------- 1 | /*global URLify*/ 2 | 'use strict'; 3 | { 4 | const $ = django.jQuery; 5 | $.fn.prepopulate = function(dependencies, maxLength, allowUnicode) { 6 | /* 7 | Depends on urlify.js 8 | Populates a selected field with the values of the dependent fields, 9 | URLifies and shortens the string. 10 | dependencies - array of dependent fields ids 11 | maxLength - maximum length of the URLify'd string 12 | allowUnicode - Unicode support of the URLify'd string 13 | */ 14 | return this.each(function() { 15 | const prepopulatedField = $(this); 16 | 17 | const populate = function() { 18 | // Bail if the field's value has been changed by the user 19 | if (prepopulatedField.data('_changed')) { 20 | return; 21 | } 22 | 23 | const values = []; 24 | $.each(dependencies, function(i, field) { 25 | field = $(field); 26 | if (field.val().length > 0) { 27 | values.push(field.val()); 28 | } 29 | }); 30 | prepopulatedField.val(URLify(values.join(' '), maxLength, allowUnicode)); 31 | }; 32 | 33 | prepopulatedField.data('_changed', false); 34 | prepopulatedField.on('change', function() { 35 | prepopulatedField.data('_changed', true); 36 | }); 37 | 38 | if (!prepopulatedField.val()) { 39 | $(dependencies.join(',')).on('keyup change focus', populate); 40 | } 41 | }); 42 | }; 43 | } 44 | -------------------------------------------------------------------------------- /staticfiles/admin/js/collapse.js: -------------------------------------------------------------------------------- 1 | /*global gettext*/ 2 | 'use strict'; 3 | { 4 | window.addEventListener('load', function() { 5 | // Add anchor tag for Show/Hide link 6 | const fieldsets = document.querySelectorAll('fieldset.collapse'); 7 | for (const [i, elem] of fieldsets.entries()) { 8 | // Don't hide if fields in this fieldset have errors 9 | if (elem.querySelectorAll('div.errors, ul.errorlist').length === 0) { 10 | elem.classList.add('collapsed'); 11 | const h2 = elem.querySelector('h2'); 12 | const link = document.createElement('a'); 13 | link.id = 'fieldsetcollapser' + i; 14 | link.className = 'collapse-toggle'; 15 | link.href = '#'; 16 | link.textContent = gettext('Show'); 17 | h2.appendChild(document.createTextNode(' (')); 18 | h2.appendChild(link); 19 | h2.appendChild(document.createTextNode(')')); 20 | } 21 | } 22 | // Add toggle to hide/show anchor tag 23 | const toggleFunc = function(ev) { 24 | if (ev.target.matches('.collapse-toggle')) { 25 | ev.preventDefault(); 26 | ev.stopPropagation(); 27 | const fieldset = ev.target.closest('fieldset'); 28 | if (fieldset.classList.contains('collapsed')) { 29 | // Show 30 | ev.target.textContent = gettext('Hide'); 31 | fieldset.classList.remove('collapsed'); 32 | } else { 33 | // Hide 34 | ev.target.textContent = gettext('Show'); 35 | fieldset.classList.add('collapsed'); 36 | } 37 | } 38 | }; 39 | document.querySelectorAll('fieldset.module').forEach(function(el) { 40 | el.addEventListener('click', toggleFunc); 41 | }); 42 | }); 43 | } 44 | -------------------------------------------------------------------------------- /staticfiles/django_extensions/js/jquery.bgiframe.js: -------------------------------------------------------------------------------- 1 | /*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net) 2 | * Licensed under the MIT License (LICENSE.txt). 3 | * 4 | * Version 2.1.2 5 | */ 6 | 7 | (function($){ 8 | 9 | $.fn.bgiframe = ($.browser.msie && /msie 6\.0/i.test(navigator.userAgent) ? function(s) { 10 | s = $.extend({ 11 | top : 'auto', // auto == .currentStyle.borderTopWidth 12 | left : 'auto', // auto == .currentStyle.borderLeftWidth 13 | width : 'auto', // auto == offsetWidth 14 | height : 'auto', // auto == offsetHeight 15 | opacity : true, 16 | src : 'javascript:false;' 17 | }, s); 18 | var html = '