Django is a Model-View-Template framework that uses Python for web development. Big names such as Google, Youtube, and Instagram use this framework. Django boasts its batteries-included feature, which is a bunch of features such as authentication and messaging that Django has. It follows the Convention Over Configuration pattern and the DRY pattern as well. Django is a great choice for security applications because it provides techniques and tools for developers to build a secure website or implements the security features in the framework itself, like preventing code execution in the template layer. Here is a more detailed post on Django: What is Django? Advantages and Disadvantages of using Django
In Django projects, we can run HTML code as a string from view.py.
However to render a whole page, we need more than just a string of HTML - so we use Templates.
Templates are essential to Django apps because they allow the implementer to:
- 'Plug in' Python code inside an HTML template
- Modulate and write cleaner code by separating the HTML and Python files
Example:
All table definitions for our schema go in 'models.py', but for this example's simplicity I have the class definition for Challenge in 'views.py'.
![](https://static.wixstatic.com/media/c37be2_9b28dafa7f464f6eabe73ff1336df5b2~mv2.jpg/v1/fill/w_980,h_342,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/c37be2_9b28dafa7f464f6eabe73ff1336df5b2~mv2.jpg)
Passing in challenges in 'views.py' to our 'home.html' template:
![](https://static.wixstatic.com/media/c37be2_7807011a47404ceea71a540e96a2605c~mv2.jpg/v1/fill/w_577,h_49,al_c,q_80,enc_avif,quality_auto/c37be2_7807011a47404ceea71a540e96a2605c~mv2.jpg)
While rendering the template in 'home.html', I use a foreach loop to access each challenge's own properties:
![](https://static.wixstatic.com/media/c37be2_8739de7c8b4a4fd2be9720dfaead34a3~mv2.jpg/v1/fill/w_586,h_449,al_c,q_80,enc_avif,quality_auto/c37be2_8739de7c8b4a4fd2be9720dfaead34a3~mv2.jpg)
Rendered output using Bootstrap carousels at '{host}/home':
![](https://static.wixstatic.com/media/c37be2_f90a7a09cbec43b199dac77ad62ea162~mv2.jpg/v1/fill/w_980,h_239,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/c37be2_f90a7a09cbec43b199dac77ad62ea162~mv2.jpg)
![](https://static.wixstatic.com/media/c37be2_da41d790399148b0b876ecfbdd11b6ff~mv2.jpg/v1/fill/w_980,h_233,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/c37be2_da41d790399148b0b876ecfbdd11b6ff~mv2.jpg)
![](https://static.wixstatic.com/media/c37be2_6a4697b73d874ea2a37bf74c02d3a860~mv2.jpg/v1/fill/w_980,h_233,al_c,q_80,usm_0.66_1.00_0.01,enc_avif,quality_auto/c37be2_6a4697b73d874ea2a37bf74c02d3a860~mv2.jpg)
Commentaires