diff options
author | Marc Tamlyn <marc.tamlyn@gmail.com> | 2012-07-27 01:30:27 -0700 |
---|---|---|
committer | Marc Tamlyn <marc.tamlyn@gmail.com> | 2012-07-27 01:30:27 -0700 |
commit | bf9e3288d78ffebc959c0a898c4c05c2db6a383d (patch) | |
tree | 6eea45aa3a68fece4c9ae6add826eed50920c380 /README.rst | |
parent | fab23c4fc12d667575064835c82146eb8f88f896 (diff) | |
parent | fd3c890e2ecd2b5448ee7ca65503c2b31ac92ddb (diff) | |
download | django-wkhtmltopdf-bf9e3288d78ffebc959c0a898c4c05c2db6a383d.tar.gz django-wkhtmltopdf-bf9e3288d78ffebc959c0a898c4c05c2db6a383d.tar.bz2 django-wkhtmltopdf-bf9e3288d78ffebc959c0a898c4c05c2db6a383d.zip |
Merge pull request #9 from ecometrica/master
Refactoring of django-wkhtmltopdf
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -34,3 +34,13 @@ specific execuatable: e.g.: in ``settings.py``:: WKHTMLTOPDF_CMD = '/path/to/my/wkhtmltopdf' + +You may also set +``WKHTMLTOPDF_CMD_OPTIONS`` +in ``settings.py`` to a dictionary of default command-line options. + +The default is:: + + WKHTMLTOPDF_CMD_OPTIONS = { + 'quiet': True, + } |