├── .dockerignore ├── .gitignore ├── .gitlab-ci.yml ├── CHANGELOG ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── docker-compose.yml ├── docs ├── contributors.md ├── endpoints.md ├── extend.md ├── howto.md ├── index.md ├── quickstart.md └── screenshots │ ├── addreportscreen.png │ ├── editreportscreen.png │ ├── newreportindash.png │ ├── previewreport.png │ ├── progress.png │ ├── report.png │ ├── reportbuilderdash.png │ ├── reportbuilderscreen.jpg │ └── reportfilterstab.png ├── js ├── .browserslistrc ├── .editorconfig ├── .prettierrc ├── README.md ├── angular.json ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── proxy.conf.json ├── src │ ├── app │ │ ├── actions │ │ │ ├── config.ts │ │ │ ├── display-field.ts │ │ │ ├── filter.ts │ │ │ ├── reports.ts │ │ │ └── router.ts │ │ ├── api.interceptor.ts │ │ ├── api.service.spec.ts │ │ ├── api.service.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── confirm │ │ │ ├── confirm-modal.component.html │ │ │ └── confirm-modal.component.ts │ │ ├── effects │ │ │ ├── config.ts │ │ │ ├── mockStoreInit.ts │ │ │ ├── reports.spec.ts │ │ │ ├── reports.ts │ │ │ └── router.ts │ │ ├── error │ │ │ ├── error.component.html │ │ │ └── error.component.ts │ │ ├── generic.guard.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── home │ │ │ ├── home.component.html │ │ │ └── home.component.ts │ │ ├── main │ │ │ ├── main.component.html │ │ │ ├── main.component.scss │ │ │ ├── main.component.spec.ts │ │ │ ├── main.component.ts │ │ │ ├── right-sidebar │ │ │ │ ├── field.component.ts │ │ │ │ ├── right-sidebar.component.html │ │ │ │ ├── right-sidebar.component.scss │ │ │ │ ├── right-sidebar.component.spec.ts │ │ │ │ └── right-sidebar.component.ts │ │ │ └── tabs │ │ │ │ ├── display-tab │ │ │ │ ├── display-tab-row.component.html │ │ │ │ ├── display-tab-row.component.ts │ │ │ │ ├── display-tab.component.html │ │ │ │ └── display-tab.component.ts │ │ │ │ ├── filter-tab │ │ │ │ ├── filter-input.component.html │ │ │ │ ├── filter-input.component.ts │ │ │ │ ├── filter-tab-row.component.html │ │ │ │ ├── filter-tab-row.component.ts │ │ │ │ ├── filter-tab.component.html │ │ │ │ └── filter-tab.component.ts │ │ │ │ ├── options-tab │ │ │ │ ├── options-tab.component.html │ │ │ │ └── options-tab.component.ts │ │ │ │ ├── report-tab │ │ │ │ ├── last-report.component.ts │ │ │ │ ├── report-preview.component.ts │ │ │ │ ├── report-tab.component.ts │ │ │ │ └── saved-timestamp.component.ts │ │ │ │ ├── tabs.component.html │ │ │ │ ├── tabs.component.scss │ │ │ │ ├── tabs.component.spec.ts │ │ │ │ └── tabs.component.ts │ │ ├── models │ │ │ ├── api.ts │ │ │ ├── config.ts │ │ │ ├── reports.spec.ts │ │ │ └── reports.ts │ │ ├── new-report │ │ │ ├── new-report.component.css │ │ │ ├── new-report.component.html │ │ │ ├── new-report.component.spec.ts │ │ │ └── new-report.component.ts │ │ ├── reducers.ts │ │ ├── reducers │ │ │ ├── config.ts │ │ │ ├── reports.spec.ts │ │ │ ├── reports.ts │ │ │ └── testdata.spec.ts │ │ ├── selectors.ts │ │ └── selectors │ │ │ ├── config.ts │ │ │ └── reports.ts │ ├── assets │ │ └── .gitkeep │ ├── custom-theme.scss │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.scss │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock ├── manage.py ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── report_builder ├── __init__.py ├── admin.py ├── api │ ├── __init__.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── email.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20150201_1809.py │ ├── 0003_auto_20150720_1549.py │ ├── 0004_auto_20170915_2046.py │ ├── 0005_add_delta_filtering.py │ ├── 0006_auto_20180413_0747.py │ ├── 0007_auto_20190214_1405.py │ └── __init__.py ├── mixins.py ├── models.py ├── static │ └── report_builder │ │ ├── .nothing │ │ ├── img │ │ ├── add.svg │ │ ├── arrow.png │ │ ├── arrow_down.png │ │ ├── copy.svg │ │ ├── delete.svg │ │ ├── download.svg │ │ ├── edit.png │ │ ├── edit.svg │ │ ├── list.svg │ │ ├── plus.png │ │ ├── reorder.svg │ │ ├── star.png │ │ ├── star.svg │ │ └── unstar.png │ │ └── js │ │ ├── report_form.js │ │ └── report_list.js ├── tasks.py ├── templates │ ├── admin │ │ └── report_builder │ │ │ └── report │ │ │ ├── change_form.html │ │ │ └── change_list.html │ ├── email │ │ └── email_report.html │ └── report_builder │ │ ├── base.html │ │ ├── export_to_report.html │ │ └── spa.html ├── tests │ ├── __init__.py │ ├── test_utils.py │ ├── test_views.py │ └── tests.py ├── unique_slugify.py ├── urls.py ├── utils.py └── views.py ├── report_builder_demo ├── __init__.py ├── celery.py ├── demo_models │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_bar_foos.py │ │ ├── 0003_auto_20150419_2110.py │ │ ├── 0004_bar_date_field.py │ │ ├── 0004_waiter_days_worked.py │ │ ├── 0005_auto_20150622_1840.py │ │ ├── 0006_account.py │ │ ├── 0006_merge.py │ │ ├── 0007_auto_20150712_1752.py │ │ ├── 0008_merge.py │ │ ├── 0009_auto_20151209_2136.py │ │ ├── 0010_adding_sample_datefields.py │ │ ├── 0011_auto_20180413_0747.py │ │ └── __init__.py │ └── models.py ├── demo_second_app │ ├── __init__.py │ ├── admin.py │ └── models.py ├── settings.py ├── urls.py └── wsgi.py ├── report_builder_scheduled ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180413_0747.py │ └── __init__.py ├── models.py ├── tasks.py ├── tests.py ├── urls.py └── views.py ├── setup.cfg ├── setup.py ├── tox.ini ├── tox.py37.ini └── tox.py38.ini /.dockerignore: -------------------------------------------------------------------------------- 1 | env 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/endpoints.md -------------------------------------------------------------------------------- /docs/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/extend.md -------------------------------------------------------------------------------- /docs/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/howto.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/screenshots/addreportscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/addreportscreen.png -------------------------------------------------------------------------------- /docs/screenshots/editreportscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/editreportscreen.png -------------------------------------------------------------------------------- /docs/screenshots/newreportindash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/newreportindash.png -------------------------------------------------------------------------------- /docs/screenshots/previewreport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/previewreport.png -------------------------------------------------------------------------------- /docs/screenshots/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/progress.png -------------------------------------------------------------------------------- /docs/screenshots/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/report.png -------------------------------------------------------------------------------- /docs/screenshots/reportbuilderdash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/reportbuilderdash.png -------------------------------------------------------------------------------- /docs/screenshots/reportbuilderscreen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/reportbuilderscreen.jpg -------------------------------------------------------------------------------- /docs/screenshots/reportfilterstab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/docs/screenshots/reportfilterstab.png -------------------------------------------------------------------------------- /js/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/.browserslistrc -------------------------------------------------------------------------------- /js/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/.editorconfig -------------------------------------------------------------------------------- /js/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/.prettierrc -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/README.md -------------------------------------------------------------------------------- /js/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/angular.json -------------------------------------------------------------------------------- /js/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /js/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/e2e/app.po.ts -------------------------------------------------------------------------------- /js/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /js/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/karma.conf.js -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/package.json -------------------------------------------------------------------------------- /js/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/protractor.conf.js -------------------------------------------------------------------------------- /js/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/proxy.conf.json -------------------------------------------------------------------------------- /js/src/app/actions/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/actions/config.ts -------------------------------------------------------------------------------- /js/src/app/actions/display-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/actions/display-field.ts -------------------------------------------------------------------------------- /js/src/app/actions/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/actions/filter.ts -------------------------------------------------------------------------------- /js/src/app/actions/reports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/actions/reports.ts -------------------------------------------------------------------------------- /js/src/app/actions/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/actions/router.ts -------------------------------------------------------------------------------- /js/src/app/api.interceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/api.interceptor.ts -------------------------------------------------------------------------------- /js/src/app/api.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/api.service.spec.ts -------------------------------------------------------------------------------- /js/src/app/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/api.service.ts -------------------------------------------------------------------------------- /js/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/app.component.html -------------------------------------------------------------------------------- /js/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /js/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/app.component.ts -------------------------------------------------------------------------------- /js/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/app.module.ts -------------------------------------------------------------------------------- /js/src/app/confirm/confirm-modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/confirm/confirm-modal.component.html -------------------------------------------------------------------------------- /js/src/app/confirm/confirm-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/confirm/confirm-modal.component.ts -------------------------------------------------------------------------------- /js/src/app/effects/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/effects/config.ts -------------------------------------------------------------------------------- /js/src/app/effects/mockStoreInit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/effects/mockStoreInit.ts -------------------------------------------------------------------------------- /js/src/app/effects/reports.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/effects/reports.spec.ts -------------------------------------------------------------------------------- /js/src/app/effects/reports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/effects/reports.ts -------------------------------------------------------------------------------- /js/src/app/effects/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/effects/router.ts -------------------------------------------------------------------------------- /js/src/app/error/error.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/error/error.component.html -------------------------------------------------------------------------------- /js/src/app/error/error.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/error/error.component.ts -------------------------------------------------------------------------------- /js/src/app/generic.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/generic.guard.ts -------------------------------------------------------------------------------- /js/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/header/header.component.html -------------------------------------------------------------------------------- /js/src/app/header/header.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/header/header.component.scss -------------------------------------------------------------------------------- /js/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /js/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/header/header.component.ts -------------------------------------------------------------------------------- /js/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/home/home.component.html -------------------------------------------------------------------------------- /js/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/home/home.component.ts -------------------------------------------------------------------------------- /js/src/app/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/main.component.html -------------------------------------------------------------------------------- /js/src/app/main/main.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/main.component.scss -------------------------------------------------------------------------------- /js/src/app/main/main.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/main.component.spec.ts -------------------------------------------------------------------------------- /js/src/app/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/main.component.ts -------------------------------------------------------------------------------- /js/src/app/main/right-sidebar/field.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/right-sidebar/field.component.ts -------------------------------------------------------------------------------- /js/src/app/main/right-sidebar/right-sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/right-sidebar/right-sidebar.component.html -------------------------------------------------------------------------------- /js/src/app/main/right-sidebar/right-sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/right-sidebar/right-sidebar.component.scss -------------------------------------------------------------------------------- /js/src/app/main/right-sidebar/right-sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/right-sidebar/right-sidebar.component.spec.ts -------------------------------------------------------------------------------- /js/src/app/main/right-sidebar/right-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/right-sidebar/right-sidebar.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/display-tab/display-tab-row.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/display-tab/display-tab-row.component.html -------------------------------------------------------------------------------- /js/src/app/main/tabs/display-tab/display-tab-row.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/display-tab/display-tab-row.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/display-tab/display-tab.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/display-tab/display-tab.component.html -------------------------------------------------------------------------------- /js/src/app/main/tabs/display-tab/display-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/display-tab/display-tab.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/filter-tab/filter-input.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/filter-tab/filter-input.component.html -------------------------------------------------------------------------------- /js/src/app/main/tabs/filter-tab/filter-input.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/filter-tab/filter-input.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/filter-tab/filter-tab-row.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/filter-tab/filter-tab-row.component.html -------------------------------------------------------------------------------- /js/src/app/main/tabs/filter-tab/filter-tab-row.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/filter-tab/filter-tab-row.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/filter-tab/filter-tab.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/filter-tab/filter-tab.component.html -------------------------------------------------------------------------------- /js/src/app/main/tabs/filter-tab/filter-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/filter-tab/filter-tab.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/options-tab/options-tab.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/options-tab/options-tab.component.html -------------------------------------------------------------------------------- /js/src/app/main/tabs/options-tab/options-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/options-tab/options-tab.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/report-tab/last-report.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/report-tab/last-report.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/report-tab/report-preview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/report-tab/report-preview.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/report-tab/report-tab.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/report-tab/report-tab.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/report-tab/saved-timestamp.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/report-tab/saved-timestamp.component.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/tabs.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/tabs.component.html -------------------------------------------------------------------------------- /js/src/app/main/tabs/tabs.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/tabs.component.scss -------------------------------------------------------------------------------- /js/src/app/main/tabs/tabs.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/tabs.component.spec.ts -------------------------------------------------------------------------------- /js/src/app/main/tabs/tabs.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/main/tabs/tabs.component.ts -------------------------------------------------------------------------------- /js/src/app/models/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/models/api.ts -------------------------------------------------------------------------------- /js/src/app/models/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/models/config.ts -------------------------------------------------------------------------------- /js/src/app/models/reports.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/models/reports.spec.ts -------------------------------------------------------------------------------- /js/src/app/models/reports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/models/reports.ts -------------------------------------------------------------------------------- /js/src/app/new-report/new-report.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/new-report/new-report.component.css -------------------------------------------------------------------------------- /js/src/app/new-report/new-report.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/new-report/new-report.component.html -------------------------------------------------------------------------------- /js/src/app/new-report/new-report.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/new-report/new-report.component.spec.ts -------------------------------------------------------------------------------- /js/src/app/new-report/new-report.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/new-report/new-report.component.ts -------------------------------------------------------------------------------- /js/src/app/reducers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/reducers.ts -------------------------------------------------------------------------------- /js/src/app/reducers/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/reducers/config.ts -------------------------------------------------------------------------------- /js/src/app/reducers/reports.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/reducers/reports.spec.ts -------------------------------------------------------------------------------- /js/src/app/reducers/reports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/reducers/reports.ts -------------------------------------------------------------------------------- /js/src/app/reducers/testdata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/reducers/testdata.spec.ts -------------------------------------------------------------------------------- /js/src/app/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/selectors.ts -------------------------------------------------------------------------------- /js/src/app/selectors/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/selectors/config.ts -------------------------------------------------------------------------------- /js/src/app/selectors/reports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/app/selectors/reports.ts -------------------------------------------------------------------------------- /js/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/src/custom-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/custom-theme.scss -------------------------------------------------------------------------------- /js/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /js/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/environments/environment.ts -------------------------------------------------------------------------------- /js/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/index.html -------------------------------------------------------------------------------- /js/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/main.ts -------------------------------------------------------------------------------- /js/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/polyfills.ts -------------------------------------------------------------------------------- /js/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/styles.scss -------------------------------------------------------------------------------- /js/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/test.ts -------------------------------------------------------------------------------- /js/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/tsconfig.app.json -------------------------------------------------------------------------------- /js/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/tsconfig.spec.json -------------------------------------------------------------------------------- /js/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/src/typings.d.ts -------------------------------------------------------------------------------- /js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/tsconfig.json -------------------------------------------------------------------------------- /js/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/tslint.json -------------------------------------------------------------------------------- /js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/js/yarn.lock -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/manage.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/pyproject.toml -------------------------------------------------------------------------------- /report_builder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/admin.py -------------------------------------------------------------------------------- /report_builder/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/api/serializers.py -------------------------------------------------------------------------------- /report_builder/api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/api/tests.py -------------------------------------------------------------------------------- /report_builder/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/api/views.py -------------------------------------------------------------------------------- /report_builder/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/email.py -------------------------------------------------------------------------------- /report_builder/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/migrations/0001_initial.py -------------------------------------------------------------------------------- /report_builder/migrations/0002_auto_20150201_1809.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/migrations/0002_auto_20150201_1809.py -------------------------------------------------------------------------------- /report_builder/migrations/0003_auto_20150720_1549.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/migrations/0003_auto_20150720_1549.py -------------------------------------------------------------------------------- /report_builder/migrations/0004_auto_20170915_2046.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/migrations/0004_auto_20170915_2046.py -------------------------------------------------------------------------------- /report_builder/migrations/0005_add_delta_filtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/migrations/0005_add_delta_filtering.py -------------------------------------------------------------------------------- /report_builder/migrations/0006_auto_20180413_0747.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/migrations/0006_auto_20180413_0747.py -------------------------------------------------------------------------------- /report_builder/migrations/0007_auto_20190214_1405.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/migrations/0007_auto_20190214_1405.py -------------------------------------------------------------------------------- /report_builder/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/mixins.py -------------------------------------------------------------------------------- /report_builder/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/models.py -------------------------------------------------------------------------------- /report_builder/static/report_builder/.nothing: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/add.svg -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/arrow.png -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/arrow_down.png -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/copy.svg -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/delete.svg -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/download.svg -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/edit.png -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/edit.svg -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/list.svg -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/plus.png -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/reorder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/reorder.svg -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/star.png -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/star.svg -------------------------------------------------------------------------------- /report_builder/static/report_builder/img/unstar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/img/unstar.png -------------------------------------------------------------------------------- /report_builder/static/report_builder/js/report_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/js/report_form.js -------------------------------------------------------------------------------- /report_builder/static/report_builder/js/report_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/static/report_builder/js/report_list.js -------------------------------------------------------------------------------- /report_builder/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/tasks.py -------------------------------------------------------------------------------- /report_builder/templates/admin/report_builder/report/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/templates/admin/report_builder/report/change_form.html -------------------------------------------------------------------------------- /report_builder/templates/admin/report_builder/report/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/templates/admin/report_builder/report/change_list.html -------------------------------------------------------------------------------- /report_builder/templates/email/email_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/templates/email/email_report.html -------------------------------------------------------------------------------- /report_builder/templates/report_builder/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/templates/report_builder/base.html -------------------------------------------------------------------------------- /report_builder/templates/report_builder/export_to_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/templates/report_builder/export_to_report.html -------------------------------------------------------------------------------- /report_builder/templates/report_builder/spa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/templates/report_builder/spa.html -------------------------------------------------------------------------------- /report_builder/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/tests/test_utils.py -------------------------------------------------------------------------------- /report_builder/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/tests/test_views.py -------------------------------------------------------------------------------- /report_builder/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/tests/tests.py -------------------------------------------------------------------------------- /report_builder/unique_slugify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/unique_slugify.py -------------------------------------------------------------------------------- /report_builder/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/urls.py -------------------------------------------------------------------------------- /report_builder/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/utils.py -------------------------------------------------------------------------------- /report_builder/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder/views.py -------------------------------------------------------------------------------- /report_builder_demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/__init__.py -------------------------------------------------------------------------------- /report_builder_demo/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/celery.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder_demo/demo_models/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/admin.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0001_initial.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0002_bar_foos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0002_bar_foos.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0003_auto_20150419_2110.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0003_auto_20150419_2110.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0004_bar_date_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0004_bar_date_field.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0004_waiter_days_worked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0004_waiter_days_worked.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0005_auto_20150622_1840.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0005_auto_20150622_1840.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0006_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0006_account.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0006_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0006_merge.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0007_auto_20150712_1752.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0007_auto_20150712_1752.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0008_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0008_merge.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0009_auto_20151209_2136.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0009_auto_20151209_2136.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0010_adding_sample_datefields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0010_adding_sample_datefields.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/0011_auto_20180413_0747.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/migrations/0011_auto_20180413_0747.py -------------------------------------------------------------------------------- /report_builder_demo/demo_models/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder_demo/demo_models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_models/models.py -------------------------------------------------------------------------------- /report_builder_demo/demo_second_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder_demo/demo_second_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_second_app/admin.py -------------------------------------------------------------------------------- /report_builder_demo/demo_second_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/demo_second_app/models.py -------------------------------------------------------------------------------- /report_builder_demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/settings.py -------------------------------------------------------------------------------- /report_builder_demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/urls.py -------------------------------------------------------------------------------- /report_builder_demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_demo/wsgi.py -------------------------------------------------------------------------------- /report_builder_scheduled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder_scheduled/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_scheduled/admin.py -------------------------------------------------------------------------------- /report_builder_scheduled/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_scheduled/migrations/0001_initial.py -------------------------------------------------------------------------------- /report_builder_scheduled/migrations/0002_auto_20180413_0747.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_scheduled/migrations/0002_auto_20180413_0747.py -------------------------------------------------------------------------------- /report_builder_scheduled/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /report_builder_scheduled/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_scheduled/models.py -------------------------------------------------------------------------------- /report_builder_scheduled/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_scheduled/tasks.py -------------------------------------------------------------------------------- /report_builder_scheduled/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_scheduled/tests.py -------------------------------------------------------------------------------- /report_builder_scheduled/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_scheduled/urls.py -------------------------------------------------------------------------------- /report_builder_scheduled/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/report_builder_scheduled/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude=migrations 3 | ignore = E501 4 | 5 | [bdist_wheel] 6 | universal = 1 7 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/tox.ini -------------------------------------------------------------------------------- /tox.py37.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/tox.py37.ini -------------------------------------------------------------------------------- /tox.py38.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-report-builder/HEAD/tox.py38.ini --------------------------------------------------------------------------------