Я учусь Django
, и я попытался создать такой шаблон:
>>> weekend = True
>>> from django.template import Template, Context
>>> template_string = """
{% if weekend %}
<p> This is a weekend </p>
{% endif %}
"""
>>> t = Template(template_string)
Я получаю следующую ошибку. Я что-то упустил?
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
t = Template(template_string)
File "C:\Python27\lib\site-packages\django\template\base.py", line 106, in __init__
if settings.TEMPLATE_DEBUG and origin is None:
File "C:\Python27\lib\site-packages\django\utils\functional.py", line 276, in __getattr__
self._setup()
File "C:\Python27\lib\site-packages\django\conf\__init__.py", line 40, in _setup
raise ImportError("Settings cannot be imported, because environment variable %s is undefined." % ENVIRONMENT_VARIABLE)
ImportError: Settings cannot be imported, because environment variable DJANGO_SETTINGS_MODULE is undefined.
Спасибо!