How to Use the Django Templating System Efficiently

Written by yagnesh-aegis | Published 2021/03/19
Tech Story Tags: python | python-programming | python-development | django | django-template-loader | python-tutorials | python-framework | programming

TLDR The Django template system is available to programmers using the Django framework for creating web applications. Django allows that by the way of setting the “TEMPLATES” configuration parameter in the Django settings file (settings.py) Django supports the Jinja template system apart from the default template system. The template system serves the. “view” functionality of the MVC pattern implemented by Django. Django provides the programmer with an incredible layout framework of MVC. The. programmer may be working on the view component (that is the Django template file) while the programmer. may be. working on. the view.py file.via the TL;DR App

The Django template system is available to programmers using the Django framework for creating web applications to allow swift creation of dynamic web pages with data from Django models. The template system serves the “view” functionality of the MVC pattern implemented by Django.
Here, we will take a look at some of the features available with the Django template mechanism. The templating system is quite extensive, and a full analysis of it is outside the scope of this document. I would suggest the reader refer to the documentation for the template system in Django after reading this document. The documentation is available at “https://docs.Djangoproject.com/en/2.2/topics/templates/”.

The Templating System in General:

Django provides the programmer with an incredible layout framework to serve the view segment of MVC. The template system is quite flexible, and if the programmer wants to use a template engine other than the default template engine, Django allows that by the way of setting the “TEMPLATES” configuration parameter in the Django settings file (settings.py). The TEMPLATES parameter may be set as follows:
Working on the view component (that is the Django template file) while the programmer may be working on the controller component (the views.py file) will save a lot of time as the components are separate.
As I have mentioned before, you should now go ahead and check out the template documentation. The link to it has been specified in the “Introduction” section. I wish you a great learning experience ahead.
TEMPLATES = [
    {
        'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
        'DIRS': [],
        'APP_DIRS': True,
        'OPTIONS': {
            # ... some options here...
        },
    },
    ]
Django supports the Jinja template system apart from the default template system, and this may be used by setting the 'BACKEND' key with the value “Django.template.backends.jinja2.Jinja2” in the TEMPLATES parameter.
Here, we will look at the default template system only, but the Jinja template system may be used in a very similar way to your python views.py functions that serve as controllers in the MVC pattern. (I will include views.py in a later article, but for now, the knowledge about views.py from my earlier article should be enough).
The Django.template.loader module defines 2 functions to load a template from a views.py controller function: get_template(template_name, using=None) and select template(template_name_list, using=None). We will consider these 2 functions here.

Using the Template System from Controller Code:

The template system depends on the values computed in the views.py controller functions. The flow of logic for using templates is like this:
Step 1 - You write a views.py function (taking an HttpRequest object as a parameter), and compute some values that you want to use in the template. These values may come from the database, and you may access the DB data using objects of your models.py classes. Each object of a models.py class is a record in the corresponding table. (More on this later).
Step 2 - You store all these values in a dictionary object. You specify a certain key for it and place the value for the key as the value you computed or queried from the DB.
Step 3 - You create a “Django.template.Context” object from the dict created and populated in step #2.
Step 4 - You call the “get_template” function with the path to the Django template file as an argument. The template files normally have a .html extension as template files are HTML files, optionally with Django template language code embedded in them (unless you are writing a very simple app, you will embed Django template language code in that HTML). The return value of the “get_template” function is stored in a python variable.
Step 5 - You “render” the HTML read from the template file in step #4 by calling the “render” method of the object returned by the “get_template” call in step #4. The “render” method takes the context object created in step #3 as an argument.
Step 6 - You return the return value of the “render” call mentioned in step #5 as an HttpResponse object. The views.py controller function ends here.
Step 7 - Finally, you populate the template HTML file (referred to in step #4) using whatever HTML content you want, with keys of the python dictionary referred to in step #2 as variables in the HTML file. Each of these variables are enclosed between “{{“and “}}” symbols. You may even put some logic into the HTML file using these variables in “if”, “for” or some other logical statement. The logic statements should be enclosed in “{%” and “%}” symbols.
Example:
Now that we have set down the flow of logic for creating and using templates, let us look at an example. I will assume that there is an application by the name “testapp”. Please refer to my earlier article (titled “How to set up a REST Service or a Web Application in Django”) to see how to create a Django app. The directory structure under “testapp” is like this:
Testapp/
__init__.py
admin.p
migrations.py
templates/
models.py
views.py
There will be some other files in the above structure, but they are not relevant to the Django template system. So for the sake of simplicity, I have skipped them.
The “templates” directory above will contain the HTML file “testapp_template.html”. The contents of the file are as follows:
<!doctype html>
<html>
<head>
<title>Test App Template</title>
</head>
<body>
<center>
<p>{{ name }}</p>
<p>{{ birth_place }}</p>
</center>
</body>
</html>
Creating this file is specified as step #7 above, in the list of steps to use the Django template system. However, it doesn't matter if we do this in the first place as it is not related to the steps from 1 through 6 above. Please note that we have used 2 variables, named “name” and “birth_place” in the above HTML listing. We will need to define these variables as keys of the dictionary in our controller function that uses this HTML listing.
The corresponding controller function (in the file views.py) is as shown below:
def test_controller(request):
name = "Supriyo"
birthplace = "Kharagpur"
testdict = {}
testdict['name'] = name # note the key 'name'  # step #2
testdict['birth_place'] = birthplace # note the key 'birth_place' # step #2
cxt = Context(testdict) # Creating context object - step #3
tmpl = get_template("testapp_template.html") # calling "get_template" function - step #4.	
testhtml = tmpl.render(cxt) # rendering html content - step #5.
return HttpResponse(testhtml) # returning rendered HTML as HttpResponse - step #6.
Please note that the controller function above takes an HttpRequest object ('request') as a parameter. The return value is an HttpResponse object.
“select_template” is just like get_template (), except it gets a record of template names. It attempts each name in order and returns the first template that previous. In case it can't find any of the templates mentioned in the list, it raises the “TemplateDoesNotExist” exception.

How to make it Work:

To make the above code work, create a Django project and an application under the project using steps mentioned to create these in my earlier article titled “How to set up a REST Service or a Web Application in Django”. Let's assume we have a project named “test” and an app named “testappp” under it. In the urls.py file, add the following code:
urlpatterns = patterns('',
url(r'^/testapp/$', 'test.testapp.views.test_controller ', name='test_controller'),
)
The above code means that if you hit the URL then the controller function “test_controller” will be invoked. The object path to test_controller is “test.testapp.views.test_controller” as it is defined in the views.py module. You would also need to add the following import statement at the top in the urls.py file:
from Django.conf.urls import patterns include, url
Next, you need to create the testapp_template.html file in the “templates” directory. The file should contain the code specified in listing 2.
Next, add the following import statements in views.py file.
from Django.shortcuts import render
from Django.http import HttpResponse
from Django.template import Template, Context
from Django.template.loader import get_template
Add the code in Listing 3 in the views.py file under the above-mentioned import statements.
Finally, start the Django default web server, if it isn't already running. We will be using this webserver to run the code that we are testing with. Later on, in one of my Python django development articles, I will show you how to use a production-grade web server and application server to serve Django app services. For now, please get into the project directory (named “test” as we have created a project named “test”). Run the following command in the directory:
Python manage.py runserver 0.0.0.0:8080
Note that we are using the localhost and port 8080 to serve our page.
Point your browser and you should be able to see the webpage containing the values of the name and the birth_place variables.

Conclusion:

We have just scratched the proverbial “tip of the iceberg” here. Django templates support inheritance, and they may also be “include” -ed in other template files. Template files may contain logic statements like “if”, “for”, etc. Templates are very handy to use, and they separate the view component from the controller logic in Django. It is possible to implement the view component in the controller functions (in views.py) in Django, but that is not advisable.
By separating the view from the controller components, the separate files may be worked on simultaneously. For example, the web designer may be working on the view component (that is the Django template file) while the Python django development programmer may be working on the controller component (the views.py file). This will save a lot of time as the components are separate.
As I have mentioned before, you should now go ahead and check out the template documentation. The link to it has been specified in the “Introduction” section. I wish you a great learning experience ahead.

Written by yagnesh-aegis | Software and Web Application Developer at Nexsoftsys - Software Development Company
Published by HackerNoon on 2021/03/19