├── .gitignore ├── Procfile ├── README.rst ├── extra_templates └── jinja2 │ └── demo │ └── a.html ├── images ├── 404.png └── 500.png ├── manage.py ├── package.json ├── postcss.config.js ├── tailwind.config.js ├── technicalerrors ├── __init__.py ├── static │ ├── init.d.ts │ ├── init.js │ ├── init.js.map │ ├── init.ts │ ├── input.css │ └── tailwind.css └── templates │ ├── django-logo-positive-original.svg │ ├── django-logo-positive.svg │ ├── technical_404.html │ └── technical_500.html ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | .envrc 2 | node_modules 3 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/Procfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/README.rst -------------------------------------------------------------------------------- /extra_templates/jinja2/demo/a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/extra_templates/jinja2/demo/a.html -------------------------------------------------------------------------------- /images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/images/404.png -------------------------------------------------------------------------------- /images/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/images/500.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /technicalerrors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/__init__.py -------------------------------------------------------------------------------- /technicalerrors/static/init.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /technicalerrors/static/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/static/init.js -------------------------------------------------------------------------------- /technicalerrors/static/init.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/static/init.js.map -------------------------------------------------------------------------------- /technicalerrors/static/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/static/init.ts -------------------------------------------------------------------------------- /technicalerrors/static/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/static/input.css -------------------------------------------------------------------------------- /technicalerrors/static/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/static/tailwind.css -------------------------------------------------------------------------------- /technicalerrors/templates/django-logo-positive-original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/templates/django-logo-positive-original.svg -------------------------------------------------------------------------------- /technicalerrors/templates/django-logo-positive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/templates/django-logo-positive.svg -------------------------------------------------------------------------------- /technicalerrors/templates/technical_404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/templates/technical_404.html -------------------------------------------------------------------------------- /technicalerrors/templates/technical_500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/technicalerrors/templates/technical_500.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kezabelle/django-technicalerrors/HEAD/tslint.json --------------------------------------------------------------------------------