Performance: Template filters
MEDIUM IMPACT
Template filters affect the rendering speed of HTML by modifying data during template processing before sending to the browser.
{% set formatted_date = preformatted_date %}{{ formatted_date }}{% set formatted_date = my_date|custom_complex_filter %}{{ formatted_date }}| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Complex filter with heavy logic | No direct DOM impact | No direct reflows | Delays initial paint by increasing server response time | [X] Bad |
| Simple filter or precomputed data | No direct DOM impact | No direct reflows | Faster initial paint due to quicker server response | [OK] Good |