[Django]-What does the word "render" means in django?

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
👤Rohan

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.

-1👍

To merge your template and code to create a proper page

Leave a comment