{% extends "base.html" %} {% block content %}

Hello World!

This is {{ html_var }} coming through


{% if num is not None %} Random number is {{ num }} {% endif %}

{% for some_item in some_list %} {% if some_item|divisibleby:"2"%} Even number!! {% endif %} {{ some_item }}
{% endfor %}

Some item is {{ some_item }}

{% endblock content %}