Contains the Concourse pipeline definition for building a line-server container
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.

16 lines
425 B

9 years ago
9 years ago
  1. {% extends "base.html" %}
  2. {% block main %}
  3. <div class="normal display-file">
  4. <p class="center">You are requesting <a href="{{ sitepath }}selif/{{ filename }}">{{ filename }}</a>, <a href="{{ sitepath }}selif/{{ filename }}">click here</a> to download.</p>
  5. {% if files|length > 0 %}
  6. <p>Contents of the archive:</p>
  7. <ul>
  8. {% for file in files %}
  9. <li>{{ file }}</li>
  10. {% endfor %}
  11. </ul>
  12. {% endif %}
  13. </div>
  14. {% endblock %}