mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-02-03 05:04:25 +03:00
Transform project name to lowercase for slug.
This commit is contained in:
parent
15f350f05e
commit
817abc3652
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"project_name": "project_name",
|
||||
"project_slug": "{{ cookiecutter.project_name|replace(' ', '_')|replace('-', '_') }}",
|
||||
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
|
||||
"author_name": "Your Name",
|
||||
"email": "Your email",
|
||||
"description": "A short description of the project.",
|
||||
|
|
Loading…
Reference in New Issue
Block a user