{% extends "layout.html" %} {% block content %}

Server Files:

    {% for note in notes %}
  • {% if note.strip().startswith( ("http:", "https:", "ftp:", "file:") ) %} {{note}} {% elif note.strip() %} {{note}} {% endif %}

    Delete

  • {% endfor %} {% for file in files %}
  • {{file[0]}} Edit Delete

    {% if file[0].lower().endswith( (".png", ".jpg", ".jpeg") ) %} {{file[0]}} {% elif file[0].lower().endswith( (".mp4", ".webm") ) %} {% else %} {{file[0]}} {% endif %}
  • {% endfor %}
{% endblock content %} {% block scripts %} {% endblock scripts %}