This commit is contained in:
2024-01-10 12:58:45 +05:00
parent 75a14dba1d
commit af0f09bab8
4 changed files with 40 additions and 8 deletions

View File

@@ -1,8 +1,14 @@
print("{{cookiecutter.project_slug}}")
{% if cookiecutter.foo == "bar" %}
print("{{cookiecutter.foo}}")
{% if cookiecutter.use_database %}
print("Framework will use database")
{% else %}
# print("{{cookiecutter.foo}}")
print("Framework will not use database")
{% endif %}
{% if cookiecutter.use_cache %}
print("Framework will use cache")
{% else %}
print("Framework will not use cache")
{% endif %}