bfile.html 525 B

123456789101112131415161718192021222324
  1. {% extends "basebuildpage.html" %}
  2. {% block pagetitle %}Files for package {{files.0.bpackage.name}} {% endblock %}
  3. {% block pagetable %}
  4. {% if not files %}
  5. <p>No files were recorded for this package!</p>
  6. {% else %}
  7. <tr>
  8. <th>Name</th>
  9. <th>Size (Bytes)</th>
  10. </tr>
  11. {% for file in files %}
  12. <tr class="data">
  13. <td>{{file.path}}</td>
  14. <td>{{file.size}}</td>
  15. {% endfor %}
  16. {% endif %}
  17. {% endblock %}