file.html 685 B

123456789101112131415161718192021222324252627
  1. {% extends 'editor/editor.html' %}
  2. {% block main %}
  3. <div class="padding">
  4. <div>
  5. <a href="{{ url('blob', filename=filename) }}">View file</a>
  6. or
  7. <a href="{{ url('edit', type='file', id=filename) }}">edit properties</a>
  8. </div>
  9. <h3>File properties</h3>
  10. <div class="padding">
  11. {% for property in node|sort if property[0] != '@' %}
  12. <div class="margin-bottom">
  13. <strong>{{ property }}: </strong>
  14. {{ node[property] }}
  15. </div>
  16. {% endfor %}
  17. </div>
  18. </div>
  19. {% endblock %}