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.

revision.twig 776B

1234567891011121314151617181920212223242526272829
  1. <div class="thin">
  2. <div class="header">
  3. <h2><a href="{{ url }}{{ id }}">{{ name }}</a> &rsaquo; Revision History</h2>
  4. </div>
  5. </div>
  6. <table cellpadding="6" cellspacing="1" border="0" width="100%" class="border">
  7. <tr class="colhead">
  8. <td>Revision</td>
  9. <td>Date</td>
  10. <td>User</td>
  11. <td>Summary</td>
  12. </tr>
  13. {% for info in list %}
  14. <tr class="row{{ cycle(['a', 'b'], loop.index0) }}">
  15. <td>
  16. <a href="{{ url }}{{ id }}&amp;revisionid={{ info.revision }}">#{{ info.revision }}</a>
  17. </td>
  18. <td>
  19. {{ info.time }}
  20. </td>
  21. <td>
  22. {{ info.user_id|user_url }}
  23. </td>
  24. <td>
  25. {{ info.summary }}
  26. </td>
  27. </tr>
  28. {% endfor %}
  29. </table>