4
Sense 7, to transform the template and provided variables for presentation to a user.
3
In django, template is rendered to HTTPResponse. ie the template is interpreted and translated to appropriate output. In django templates can be rendered to http response (render_to_response
) or string (render_to_string
).
Few related English word meaning in my dictionary are
render:
give an interpretation or rendition of
The pianist rendered the Beethoven sonata beautifully
restate (words) from one language into another language
She rendered the French poem into English
1
Render in simple terms means the process of transforming or translating or turning codes like html, css or Java codes, into interactive pages a website visitor can see or sees when they click on a link or reference link.
- [Django]-Where to delete model image?
- [Django]-Using UUIDField in Django keeps creating new migrations
- [Django]-Django calling no request view function in template
- [Django]-Conditionally extending a template in Django
- [Django]-TypeError: add() argument after * must be a sequence, not Subscribers
- [Django]-Django Rest Framework: Respond with 404 if no result found
- [Django]-Django migrations: how to generate database from current state of the models (good old syncdb –all)
Source:stackexchange.com