templates.html 513 B

12345678910111213141516171819202122
  1. {% extends 'editor/editor.html' %}
  2. {% block main %}
  3. <div class="padding">
  4. <p class="margin-left">
  5. This is a list of all templates available on this instance:
  6. </p>
  7. {% for t in templates %}
  8. <div class="margin-left">
  9. <a href="{{ url('edit', type='template', id=t['id']['value']) }}">
  10. {{ t['id']['value'] }}
  11. </a>
  12. </div>
  13. {% endfor %}
  14. </div>
  15. {% endblock %}