переменные - шаблоны Django

Опубликовано: 24 Февраля, 2022

Шаблон Django - это текстовый документ или строка Python, размеченная с использованием языка шаблонов Django. Django - мощный фреймворк с включенными батареями, который обеспечивает удобство рендеринга данных в шаблоне. Шаблоны Django не только позволяют передавать данные из представления в шаблон, но также предоставляют некоторые ограниченные функции программирования, такие как переменные, циклы for и т. Д.
Эта статья посвящена тому, как использовать переменную в шаблоне. Переменная выводит значение из контекста, которое представляет собой dict-подобный объект, отображающий ключи к значениям.

Синтаксис
 {{variable_name}}
Пример

Переменные заключаются в {{и}} следующим образом:

Меня зовут {{first_name}}. Моя фамилия {{last_name}}. 

With a context of {"first_name": "Naveen", "last_name": "Arora"}, this template renders to:

My first name is Naveen. My last name is Arora.

variables- Django templates Explanation

Illustration of How to use variables in Django templates using an Example. Consider a project named geeksforgeeks having an app named geeks.

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

  • How to Create a Basic Project using MVT in Django?
  • How to Create an App in Django ?

Now create a view through which we will pass the context dictionary,
In geeks/views.py,

# import render from django
from django.shortcuts import render
  
# create a function
def geeks_view(request):
    # create a dictionary
    context = {
        "first_name" : "Naveen",
        "last_name"  : "Arora",
    }
    # return response
    return render(request, "geeks.html", context)

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

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

Create a template in templates/geeks.html,

My First Name is {{ first_name }}.
<br/>
My Last Name is  {{ last_name }}.

Let’s check is variables are displayed in the template.

 Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.  

To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course. And to begin with your Machine Learning Journey, join the Machine Learning – Basic Level Course

Previous
Django Template Tags
Next
Django Tutorial
Recommended Articles
Page :
Article Contributed By :
NaveenArora
@NaveenArora
Vote for difficulty
Article Tags :
  • Django-templates
  • Python Django
  • Python
Report Issue
Python Python Django

РЕКОМЕНДУЕМЫЕ СТАТЬИ