Template Rendering DTL Usage Variables {{variable}} Notation: IF - - PowerPoint PPT Presentation

template rendering
SMART_READER_LITE
LIVE PREVIEW

Template Rendering DTL Usage Variables {{variable}} Notation: IF - - PowerPoint PPT Presentation

Template Rendering DTL Usage Variables {{variable}} Notation: IF Variable Not Valid: TEMPLATE_STRING_IF_INVALID Filters Notation: {{variable|filter}} Example: {{ name|lower }} {{bio|truncatewords:30 }} {{value|filesizeformat}} Tags


slide-1
SLIDE 1
slide-2
SLIDE 2
slide-3
SLIDE 3
slide-4
SLIDE 4

Template Rendering

slide-5
SLIDE 5

DTL Usage

slide-6
SLIDE 6

Variables

Notation: {{variable}} IF Variable Not Valid: TEMPLATE_STRING_IF_INVALID

Filters

Notation: {{variable|filter}} Example: {{ name|lower }} {{bio|truncatewords:30 }} {{value|filesizeformat}}

slide-7
SLIDE 7

Tags

Notation: {% tag %} or {% tag %} … {% endtag %} for:

slide-8
SLIDE 8

if, elif, and else:

slide-9
SLIDE 9

Template Inheritance

slide-10
SLIDE 10
slide-11
SLIDE 11
slide-12
SLIDE 12

Automatic HTML Escaping

Solution:

  • Automatic
  • Manual

{{ data|safe }} {% autoescape off %} Hello {{ name }} {% endautoescape %}