├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── ci └── linux.sh ├── docs ├── Makefile ├── conf.py ├── document-template.png ├── generated-document.png ├── http.rst ├── index.rst ├── looping-sample.png ├── make.bat ├── management-commands.rst ├── partial │ └── libffi-warning.rst ├── settings.rst ├── templates.rst └── templatetags.rst ├── example ├── db.sqlite3 ├── example │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── invoices │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── invoices │ │ │ ├── form.html │ │ │ └── invoice.odt │ ├── tests.py │ └── views.py └── manage.py ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── templated_docs ├── __init__.py ├── http.py ├── management │ ├── __init__.py │ └── base.py └── templatetags │ ├── __init__.py │ └── templated_docs_tags.py ├── tests ├── __init__.py ├── manage.py ├── test_app │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ └── correct_template.odt │ ├── tests.py │ └── views.py └── test_project │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── tox.ini └── travis_pypi_setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/README.rst -------------------------------------------------------------------------------- /ci/linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/ci/linux.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/document-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/document-template.png -------------------------------------------------------------------------------- /docs/generated-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/generated-document.png -------------------------------------------------------------------------------- /docs/http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/http.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/looping-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/looping-sample.png -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/management-commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/management-commands.rst -------------------------------------------------------------------------------- /docs/partial/libffi-warning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/partial/libffi-warning.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/templates.rst -------------------------------------------------------------------------------- /docs/templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/docs/templatetags.rst -------------------------------------------------------------------------------- /example/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/db.sqlite3 -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/invoices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/invoices/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/admin.py -------------------------------------------------------------------------------- /example/invoices/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/apps.py -------------------------------------------------------------------------------- /example/invoices/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/forms.py -------------------------------------------------------------------------------- /example/invoices/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/invoices/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/invoices/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/models.py -------------------------------------------------------------------------------- /example/invoices/templates/invoices/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/templates/invoices/form.html -------------------------------------------------------------------------------- /example/invoices/templates/invoices/invoice.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/templates/invoices/invoice.odt -------------------------------------------------------------------------------- /example/invoices/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/tests.py -------------------------------------------------------------------------------- /example/invoices/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/invoices/views.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/example/manage.py -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/setup.py -------------------------------------------------------------------------------- /templated_docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/templated_docs/__init__.py -------------------------------------------------------------------------------- /templated_docs/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/templated_docs/http.py -------------------------------------------------------------------------------- /templated_docs/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templated_docs/management/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/templated_docs/management/base.py -------------------------------------------------------------------------------- /templated_docs/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templated_docs/templatetags/templated_docs_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/templated_docs/templatetags/templated_docs_tags.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /tests/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/manage.py -------------------------------------------------------------------------------- /tests/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/test_app/admin.py -------------------------------------------------------------------------------- /tests/test_app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/test_app/apps.py -------------------------------------------------------------------------------- /tests/test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/test_app/models.py -------------------------------------------------------------------------------- /tests/test_app/templates/correct_template.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/test_app/templates/correct_template.odt -------------------------------------------------------------------------------- /tests/test_app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/test_app/tests.py -------------------------------------------------------------------------------- /tests/test_app/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /tests/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/test_project/settings.py -------------------------------------------------------------------------------- /tests/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/test_project/urls.py -------------------------------------------------------------------------------- /tests/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tests/test_project/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/tox.ini -------------------------------------------------------------------------------- /travis_pypi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmorozov/templated-docs/HEAD/travis_pypi_setup.py --------------------------------------------------------------------------------