Models in Django: what they are, how to create them and use them step by step
04-12-2025 - Andrés Cruz
We are going to see how we can create a model in Django, which remember is one of the MTV layers of our application and the one in charge of managing its data; we will also see how to define different fields.
We are going to work with the models layer in CodeIgniter 4, which has been one of the layers of our MVC that allows us to work with the data; and we are going to know all the main properties of the models in C4.
Generate the master or base template in an app in Django
09-11-2025 - Andrés Cruz
Learn how to create master views in Django to reuse templates or generic HTML views and to modularize your application so that it grows in an organized way.
The MTV design pattern in Django and its differences from the MVC pattern, and how to understand it step by step
03-11-2025 - Andrés Cruz
We are going to talk about basic details that we must know before working with Django, such as knowing what a framework is, a pattern and the MVC pattern and its variation known in Django as MTV.
Creating our first hello world in CodeIgniter 4 and learning about controllers and views
18-04-2023 - Andrés Cruz
In this post we will see how we can create our first hello world in CodeIgniter 4, we will learn how to work with Views and Controllers, as well as routes.