BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

userflow.twig 1.0KB

123456789101112131415161718192021222324252627282930313233
  1. <div class="thin">
  2. {% if show_flow %}
  3. <div class="box pad center">
  4. <figure class="highcharts-figure"><div id="user-flow"></div></figure>
  5. </div>
  6. {% endif %}
  7. {{ paginator.linkbox|raw }}
  8. <table width="100%">
  9. <tr class="colhead">
  10. <td>Date</td>
  11. <td>(+) Joined</td>
  12. <td>(-) Manual</td>
  13. <td>(-) Ratio</td>
  14. <td>(-) Inactivity</td>
  15. <td>(-) Total</td>
  16. <td>Net Growth</td>
  17. </tr>
  18. {% for d in details %}
  19. {% set total_out = d.ratio + d.inactivity + d.manual %}
  20. <tr class="{{ cycle(['a', 'b'], loop.index0) }}">
  21. <td>{{ d.date }}</td>
  22. <td>{{ d.joined|number_format }}</td>
  23. <td>{{ d.manual|number_format }}</td>
  24. <td>{{ d.ratio|number_format }}</td>
  25. <td>{{ d.inactivity|number_format }}</td>
  26. <td>{{ total_out|number_format }}</td>
  27. <td>{{ (d.joined - total_out)|number_format }}</td>
  28. </tr>
  29. {% endfor %}
  30. </table>
  31. {{ paginator.linkbox|raw }}
  32. </div>
  33. <?php