diff options
| author | Jannis Leidel <jannis@leidel.info> | 2012-02-04 13:01:30 +0000 |
|---|---|---|
| committer | Jannis Leidel <jannis@leidel.info> | 2012-02-04 13:01:30 +0000 |
| commit | faeee611d69717614424b6c3867cd5798ee25496 (patch) | |
| tree | b25f1fdf2e33a7d9c00c2c2be227ac3fc5f35ba6 /docs/ref | |
| parent | bb6921ce888cfc981c4df8d5f079b0b7a4121ff6 (diff) | |
Fixed #17517 -- Added `--name` option to startproject and startapp management commands to be able to render files without a file extension. Thanks, Florian Apolloner.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17432 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/django-admin.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt index 3010cd020c..aa514606e2 100644 --- a/docs/ref/django-admin.txt +++ b/docs/ref/django-admin.txt @@ -951,7 +951,8 @@ creating the ``myapp`` app:: When Django copies the app template files, it also renders the files whose extension matches those passed with the ``--extension`` option (``py`` -by default) using the template engine. The :class:`template context +by default) and those files which names are passed with the ``--name`` option +using the template engine. The :class:`template context <django.template.Context>` used is: - Any option passed to the startapp command @@ -1013,7 +1014,8 @@ when creating the ``myproject`` project:: When Django copies the project template files, it will also render the files whose extension matches those passed with the ``--extension`` option (``py`` -by default) using the template engine. The :class:`template context +by default) and those files which names are passed with the ``--name`` option +using the template engine. The :class:`template context <django.template.Context>` used is: - Any option passed to the startproject command |
