Add example for attribute "ratio", available on HA 2025.5 (#38930)

This commit is contained in:
Everton Leite 2025-05-08 01:54:03 -03:00 committed by GitHub
parent 883d139a39
commit df15562e7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -136,7 +136,7 @@ content: >
{% for torrent in payload.items() %} {% set name = torrent[0] %} {% set data = torrent[1] %}
{{ name|truncate(20) }} is {{ data.percent_done }}% complete, {{ data.eta }} remaining {% endfor %}
{{ name|truncate(20) }} is {{ data.percent_done }}% complete, with {{ data.ratio }} ratio, {{ data.eta }} remaining {% endfor %}
type: markdown
```