├── .builds ├── python3.10.yml ├── python3.11.yml ├── python3.12.yml └── python3.13.yml ├── .github └── FUNDING.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CHANGELOG.rst ├── LICENCE ├── README.rst ├── django_renderpdf ├── __init__.py ├── helpers.py └── views.py ├── docs ├── Makefile ├── conf.py └── index.rst ├── publish-release.yaml ├── pyproject.toml ├── testapp ├── __init__.py ├── apps.py ├── manage.py ├── settings.py ├── static │ └── styles.css ├── templates │ ├── test_template.html │ └── test_template_with_staticfile.html ├── tests │ ├── __init__.py │ ├── test_helpers.py │ └── test_views.py ├── urls.py ├── views.py └── wsgi.py └── tox.ini /.builds/python3.10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/.builds/python3.10.yml -------------------------------------------------------------------------------- /.builds/python3.11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/.builds/python3.11.yml -------------------------------------------------------------------------------- /.builds/python3.12.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/.builds/python3.12.yml -------------------------------------------------------------------------------- /.builds/python3.13.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/.builds/python3.13.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/LICENCE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/README.rst -------------------------------------------------------------------------------- /django_renderpdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/django_renderpdf/__init__.py -------------------------------------------------------------------------------- /django_renderpdf/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/django_renderpdf/helpers.py -------------------------------------------------------------------------------- /django_renderpdf/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/django_renderpdf/views.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/docs/index.rst -------------------------------------------------------------------------------- /publish-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/publish-release.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/apps.py -------------------------------------------------------------------------------- /testapp/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/manage.py -------------------------------------------------------------------------------- /testapp/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/settings.py -------------------------------------------------------------------------------- /testapp/static/styles.css: -------------------------------------------------------------------------------- 1 | html { margin: 0; } 2 | -------------------------------------------------------------------------------- /testapp/templates/test_template.html: -------------------------------------------------------------------------------- 1 | Hi! 2 | -------------------------------------------------------------------------------- /testapp/templates/test_template_with_staticfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/templates/test_template_with_staticfile.html -------------------------------------------------------------------------------- /testapp/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testapp/tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/tests/test_helpers.py -------------------------------------------------------------------------------- /testapp/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/tests/test_views.py -------------------------------------------------------------------------------- /testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/urls.py -------------------------------------------------------------------------------- /testapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/views.py -------------------------------------------------------------------------------- /testapp/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/testapp/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WhyNotHugo/django-renderpdf/HEAD/tox.ini --------------------------------------------------------------------------------