Django - template 에서 데이터 없는 지 체크 None empty

장고 템플릿에서 이 데이터가 있는지 없는지 보고 어떤 표현을 해야 하는 경우가 다반사이다. 이때 자꾸 헷갈려서 여기 한번 적어 둔다. 이런 내용은 매번 찾아보는 듯 쓸때마다

 

그냥 None 을 체크하면 될 듯하다.

아래처럼 == None 을 체크하던지, 아니면 그냥 변수명만 조건문에 넣어도 되는 것 같다.

 

 

{% if profile.user.first_name == None %}
{% if not profile.user.first_name %}

https://stackoverflow.com/questions/11945321/what-is-the-equivalent-of-none-in-django-templates

 

What is the equivalent of "none" in django templates?

I want to see if a field/variable is none within a Django template. What is the correct syntax for that? This is what I currently have: {% if profile.user.first_name is null %} <p> -- <...

stackoverflow.com

여보세요 거기 누구 없소?

Kaique Rocha 님의 사진, 출처: Pexels