Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. {% set total = 0 %}
  2. {% for episode in podcast.episodes %}
  3. {% set total = total + episode.duration.totalMilliseconds %}
  4. {% endfor %}
  5.  
  6. {# // is division and then rounding down (floor) #}
  7.  
  8. {% set hours = total // (1000 * 3600) %}
  9. {% set minutes = (total // (1000 * 60)) % 60 %}
  10. {% set seconds = (total // 1000) % 60 %}
  11.  
  12. {% if hours < 10 %}
  13. {% set hours = "0" ~ hours %}
  14. {% endif %}
  15.  
  16. {% if minutes < 10 %}
  17. {% set minutes = "0" ~ minutes %}
  18. {% endif %}
  19.  
  20. {% if seconds < 10 %}
  21. {% set seconds = "0" ~ seconds %}
  22. {% endif %}
  23.  
  24. Gesamtdauer aller {{ podcast.episodes|length }} Episoden: {{ hours }} Stunden {{ minutes }} Minuten {{ seconds }} Sekunden
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement