Posts Tagged ‘save as string’
Generate and save a static page in Django
Generate and save a static page in Django.
Where
html/static.html is a Django template
data is the data you want to pass into the page
static(request) is a function mapped to a url in urls.py
Then
Visiting the page will generate this static file
Code
from django.template.loader import render_to_string def static(request): results = render_to_string('html/static.html', {'content': html}) with open(r'C:tempstatic.html','w') as f: f.write(results)