An "escape" filter for sequences. Mark each element in the sequence, individually, as a string that should be auto-escaped. Return a list with the results.
(value)
| 463 | |
| 464 | @register.filter(is_safe=True) |
| 465 | def escapeseq(value): |
| 466 | """ |
| 467 | An "escape" filter for sequences. Mark each element in the sequence, |
| 468 | individually, as a string that should be auto-escaped. Return a list with |
| 469 | the results. |
| 470 | """ |
| 471 | return [conditional_escape(obj) for obj in value] |
| 472 | |
| 473 | |
| 474 | @register.filter(is_safe=True) |
nothing calls this directly
no test coverage detected