Thursday, July 4, 2024
HomeLanguagesPythonnow – Django Template Tags

now – Django Template Tags

A Django template is a text document or a Python string marked-up using the Django template language. Django being a powerful Batteries included framework provides convenience to rendering data in a template. Django templates not only allow passing data from view to template, but also provides some limited features of programming such as variables, for loops, comments, extends, now, etc.
This article revolves about how to use now tag in Templates. now tag displays the current date and/or time, using a format according to the given string. Such string can contain format specifiers characters as described in the date filter section.

Syntax
{% now "D M Y H T " %}
Example
It is {% now "D d M Y" %}

Above tag will display, Tue 04 Feb 2020

now – Django template Tags Explanation

Illustration of How to use now tag in Django templates using an Example. Consider a project named neveropen having an app named Lazyroar.

Refer to the following articles to check how to create a project and an app in Django.

Now create a view through which we will access the template,
In Lazyroar/views.py,




# import Http Response from django
from django.shortcuts import render
  
# create a function
def Lazyroar_view(request):
  
    # return response
    return render(request, "Lazyroar.html.html")


Create a url path to map to this view. In Lazyroar/urls.py,




from django.urls import path
  
# importing views from views.py
from .views import Lazyroar_view
  
urlpatterns = [
    path('', Lazyroar_view),
]


Now we will create a template to demonstrate now tag. Create a base template in Lazyroar.html,




<html>
 It is the {% now "jS \o\f F" %}
</html>


Now visit http://127.0.0.1:8000/,

now-Django-TEmplate-TAgs

Advanced Usage

one can also use the syntax {% now "Y" as current_year %} to store the output (as a string) inside a variable. This is useful if you want to use {% now %} inside a template tag like blocktrans for example:

{% now "Y" as current_year %}
{% blocktrans %} Copyright {{ current_year }}{% endblocktrans %}

Last Updated :
05 Feb, 2020
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
Shaida Kate Naidoo
am passionate about learning the latest technologies available to developers in either a Front End or Back End capacity. I enjoy creating applications that are well designed and responsive, in addition to being user friendly. I thrive in fast paced environments. With a diverse educational and work experience background, I excel at collaborating with teams both local and international. A versatile developer with interests in Software Development and Software Engineering. I consider myself to be adaptable and a self motivated learner. I am interested in new programming technologies, and continuous self improvement.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments