Performance: Custom template filters
MEDIUM IMPACT
Custom template filters affect the rendering speed of templates by adding extra processing during template rendering.
{% load custom_filters %}
{{ value|simple_filter }}{% load custom_filters %}
{{ value|complex_filter }}| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Heavy custom filter with DB calls | N/A (server-side) | N/A | N/A | [✗] Bad |
| Simple custom filter with fast logic | N/A (server-side) | N/A | N/A | [✓] Good |