Django Library Mycreole
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.

manageuploads.html 684B

1234567891011121314151617181920212223242526272829
  1. {% extends "themes/"|add:settings.page_theme|add:"/base.html" %}
  2. {% load static %}
  3. {% load i18n %}
  4. {% block content %}
  5. <h1>Attachments</h1>
  6. <table>
  7. <tbody>
  8. <tr>
  9. <th>Name</th>
  10. <th>Size</th>
  11. <th>Actions</th>
  12. </tr>
  13. {% for key, value in attachments.items %}
  14. <tr>
  15. <td>{{ key }}</td>
  16. <td>{{ value.size }}</td>
  17. <td>
  18. {% for icon, url, alt in value.actions %}
  19. <a href="{{ url }}"><img src="{{ icon }}" alt={{ alt }}></a>
  20. {% endfor %}
  21. </td>
  22. </tr>
  23. {% endfor %}
  24. </tbody>
  25. </table>
  26. {% endblock content %}