import django
from django.template import Context, loader
django.conf.settings.configure(TEMPLATE_DIRS = ('/путь/до/папки/с/вашими/шаблонами',))
# Работа в вашим шаблоном.
template = loader.get_template('my_template.html')
context = Context({'problems': info_problems or 'нет',
'plans': info_plans or 'нет',
'done': info_done or 'нет'})
html = template.render(context)
Комментариев нет:
Отправить комментарий