├── .coveragerc ├── .flake8 ├── .github ├── dependabot.yml └── workflows │ └── ci-tests.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.rst ├── CONTRIBUTORS.txt ├── COPYRIGHT.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── demo ├── __init__.py ├── helloworld.jinja2 ├── locale │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ └── messages.pot └── test_demo.py ├── docs ├── .gitignore ├── Makefile ├── api.rst ├── changes.rst ├── conf.py ├── glossary.rst └── index.rst ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── pyramid_jinja2 │ ├── __init__.py │ ├── configure.zcml │ ├── filters.py │ ├── i18n.py │ ├── scaffolds │ ├── __init__.py │ └── jinja2_starter │ │ ├── +dot+coveragerc_tmpl │ │ ├── +package+ │ │ ├── __init__.py_tmpl │ │ ├── locale │ │ │ ├── +project+.pot │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── +project+.mo │ │ │ │ │ └── +project+.po │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── +project+.mo │ │ │ │ └── +project+.po │ │ ├── resources.py │ │ ├── static │ │ │ ├── favicon.ico │ │ │ ├── pyramid-16x16.png │ │ │ ├── pyramid.png │ │ │ └── theme.css │ │ ├── templates │ │ │ └── mytemplate.jinja2_tmpl │ │ ├── tests.py_tmpl │ │ └── views.py_tmpl │ │ ├── CHANGES.rst_tmpl │ │ ├── MANIFEST.in_tmpl │ │ ├── README.rst_tmpl │ │ ├── development.ini_tmpl │ │ ├── message-extraction.ini │ │ ├── pytest.ini_tmpl │ │ ├── setup.cfg_tmpl │ │ └── setup.py_tmpl │ └── settings.py ├── tests ├── __init__.py ├── babel.cfg ├── base.py ├── extensions.py ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ └── messages.po │ └── messages.pot ├── templates │ ├── bar │ │ └── mytemplate.jinja2 │ ├── baz1 │ │ ├── base.jinja2 │ │ ├── middle.jinja2 │ │ └── mytemplate.jinja2 │ ├── baz2 │ │ ├── base.jinja2 │ │ └── mytemplate.jinja2 │ ├── deep │ │ ├── base.jinja2 │ │ ├── forms.jinja2 │ │ ├── leaf.jinja2 │ │ └── sub │ │ │ ├── base.jinja2 │ │ │ ├── leaf.jinja2 │ │ │ └── nav.jinja2 │ ├── extends.jinja2 │ ├── extends_missing.jinja2 │ ├── extends_relbase.jinja2 │ ├── extends_spec.jinja2 │ ├── foo │ │ └── mytemplate.jinja2 │ ├── helloworld.jinja2 │ ├── i18n.jinja2 │ ├── newstyle.jinja2 │ ├── recursive │ │ ├── admin │ │ │ ├── base.html │ │ │ └── index.html │ │ └── base.html │ └── tests_and_filters.jinja2 ├── test_ext.py ├── test_filters.py ├── test_it.py └── test_settings.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/.github/workflows/ci-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/README.rst -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/demo/__init__.py -------------------------------------------------------------------------------- /demo/helloworld.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/demo/helloworld.jinja2 -------------------------------------------------------------------------------- /demo/locale/fr/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/demo/locale/fr/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /demo/locale/fr/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/demo/locale/fr/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /demo/locale/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/demo/locale/messages.pot -------------------------------------------------------------------------------- /demo/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/demo/test_demo.py -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _themes/ 2 | _build/ 3 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/docs/glossary.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/docs/index.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/setup.py -------------------------------------------------------------------------------- /src/pyramid_jinja2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/__init__.py -------------------------------------------------------------------------------- /src/pyramid_jinja2/configure.zcml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/configure.zcml -------------------------------------------------------------------------------- /src/pyramid_jinja2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/filters.py -------------------------------------------------------------------------------- /src/pyramid_jinja2/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/i18n.py -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/__init__.py -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+dot+coveragerc_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+dot+coveragerc_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/__init__.py_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/__init__.py_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/+project+.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/+project+.pot -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/de/LC_MESSAGES/+project+.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/de/LC_MESSAGES/+project+.mo -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/de/LC_MESSAGES/+project+.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/de/LC_MESSAGES/+project+.po -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/fr/LC_MESSAGES/+project+.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/fr/LC_MESSAGES/+project+.mo -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/fr/LC_MESSAGES/+project+.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/locale/fr/LC_MESSAGES/+project+.po -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/resources.py -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/static/favicon.ico -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/static/pyramid-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/static/pyramid-16x16.png -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/static/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/static/pyramid.png -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/static/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/static/theme.css -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/templates/mytemplate.jinja2_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/templates/mytemplate.jinja2_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/tests.py_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/tests.py_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/views.py_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/+package+/views.py_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/CHANGES.rst_tmpl: -------------------------------------------------------------------------------- 1 | 0.0 2 | --- 3 | 4 | - Initial version 5 | -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/MANIFEST.in_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/MANIFEST.in_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/README.rst_tmpl: -------------------------------------------------------------------------------- 1 | {{project}} README 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/development.ini_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/development.ini_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/message-extraction.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/message-extraction.ini -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/pytest.ini_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/pytest.ini_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/setup.cfg_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/setup.cfg_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/scaffolds/jinja2_starter/setup.py_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/scaffolds/jinja2_starter/setup.py_tmpl -------------------------------------------------------------------------------- /src/pyramid_jinja2/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/src/pyramid_jinja2/settings.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # tests package 2 | -------------------------------------------------------------------------------- /tests/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/babel.cfg -------------------------------------------------------------------------------- /tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/base.py -------------------------------------------------------------------------------- /tests/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/extensions.py -------------------------------------------------------------------------------- /tests/locale/en/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/locale/en/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /tests/locale/en/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/locale/en/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /tests/locale/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/locale/messages.pot -------------------------------------------------------------------------------- /tests/templates/bar/mytemplate.jinja2: -------------------------------------------------------------------------------- 1 | bar 2 | -------------------------------------------------------------------------------- /tests/templates/baz1/base.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/baz1/base.jinja2 -------------------------------------------------------------------------------- /tests/templates/baz1/middle.jinja2: -------------------------------------------------------------------------------- 1 | {% extends "base.jinja2" %} 2 | -------------------------------------------------------------------------------- /tests/templates/baz1/mytemplate.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/baz1/mytemplate.jinja2 -------------------------------------------------------------------------------- /tests/templates/baz2/base.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/baz2/base.jinja2 -------------------------------------------------------------------------------- /tests/templates/baz2/mytemplate.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/baz2/mytemplate.jinja2 -------------------------------------------------------------------------------- /tests/templates/deep/base.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/deep/base.jinja2 -------------------------------------------------------------------------------- /tests/templates/deep/forms.jinja2: -------------------------------------------------------------------------------- 1 | deep-forms 2 | -------------------------------------------------------------------------------- /tests/templates/deep/leaf.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/deep/leaf.jinja2 -------------------------------------------------------------------------------- /tests/templates/deep/sub/base.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/deep/sub/base.jinja2 -------------------------------------------------------------------------------- /tests/templates/deep/sub/leaf.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/deep/sub/leaf.jinja2 -------------------------------------------------------------------------------- /tests/templates/deep/sub/nav.jinja2: -------------------------------------------------------------------------------- 1 | sub-nav 2 | 3 | {% include "../forms.jinja2" %} 4 | -------------------------------------------------------------------------------- /tests/templates/extends.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/extends.jinja2 -------------------------------------------------------------------------------- /tests/templates/extends_missing.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/extends_missing.jinja2 -------------------------------------------------------------------------------- /tests/templates/extends_relbase.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/extends_relbase.jinja2 -------------------------------------------------------------------------------- /tests/templates/extends_spec.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/extends_spec.jinja2 -------------------------------------------------------------------------------- /tests/templates/foo/mytemplate.jinja2: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/templates/helloworld.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/helloworld.jinja2 -------------------------------------------------------------------------------- /tests/templates/i18n.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/i18n.jinja2 -------------------------------------------------------------------------------- /tests/templates/newstyle.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/newstyle.jinja2 -------------------------------------------------------------------------------- /tests/templates/recursive/admin/base.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/recursive/admin/index.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/base.html" %} 2 | -------------------------------------------------------------------------------- /tests/templates/recursive/base.html: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/templates/tests_and_filters.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/templates/tests_and_filters.jinja2 -------------------------------------------------------------------------------- /tests/test_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/test_ext.py -------------------------------------------------------------------------------- /tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/test_filters.py -------------------------------------------------------------------------------- /tests/test_it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/test_it.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pylons/pyramid_jinja2/HEAD/tox.ini --------------------------------------------------------------------------------