├── .editorconfig ├── .github └── workflows │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── requirements └── requirements.in ├── src └── django_persian_pdf │ ├── __init__.py │ ├── apps.py │ ├── compilers.py │ ├── py.typed │ ├── responses.py │ └── views.py ├── tests ├── __init__.py ├── fonts │ └── Vazirmatn.ttf ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── settings.py ├── templates │ ├── staff.html │ ├── staff.tex │ ├── staff_detail.html │ └── staff_detail.tex ├── test_views.py ├── urls.py └── views.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/requirements/requirements.in -------------------------------------------------------------------------------- /src/django_persian_pdf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/src/django_persian_pdf/__init__.py -------------------------------------------------------------------------------- /src/django_persian_pdf/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/src/django_persian_pdf/apps.py -------------------------------------------------------------------------------- /src/django_persian_pdf/compilers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/src/django_persian_pdf/compilers.py -------------------------------------------------------------------------------- /src/django_persian_pdf/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_persian_pdf/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/src/django_persian_pdf/responses.py -------------------------------------------------------------------------------- /src/django_persian_pdf/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/src/django_persian_pdf/views.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fonts/Vazirmatn.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/fonts/Vazirmatn.ttf -------------------------------------------------------------------------------- /tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/staff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/templates/staff.html -------------------------------------------------------------------------------- /tests/templates/staff.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/templates/staff.tex -------------------------------------------------------------------------------- /tests/templates/staff_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/templates/staff_detail.html -------------------------------------------------------------------------------- /tests/templates/staff_detail.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/templates/staff_detail.tex -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aabharya/django-persian-pdf/HEAD/tox.ini --------------------------------------------------------------------------------