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

Hello there! This interface is a proof of concept of what can be done with the Thumbtack server API. It allows you to mount and unmount disk image files in a specified directory. Once mounted, you are shown a tree view of all the image partitions that are available and where they are mounted on the server. In order to more quickly be able to navigate to the mounted directory, you can copy the path to the clipboard as well.

Mount types

The following mount types are supported on this Thumbtack server. In order to enable more mount types from the unsupported list below, please reference the documentation for that type in the imagemounter documentation.

Supported: {% for mount_type in supported_mount_types %} {{ mount_type }} {{ "-" if not loop.last }} {% endfor %}

Unsupported: {% for mount_type in unsupported_mount_types %} {{ mount_type }} {{ "-" if not loop.last }} {% endfor %}

More info

Path to disk images: {{ image_dir }}

{% for image in images %} {% endfor %}
Filename Status Mount Unmount Mountpoint
{% if image.status == 'Mounted' %} {{ image.rel_path }} {% else %} {{ image.rel_path }} {% endif %} {{ image.status }} {% if image.status == 'Unmounted' %}
{% endif %}
{% if image.status == 'Mounted' %}
{% endif %}
{% if image.status == 'Mounted' %}
  • {{ image.disk_mountpoint }}
      {% for volume in image.volume_info %}
    • [{{ volume.index }}] {{ volume.mountpoint }} {% if volume.mountpoint %}
      {% endif %}
    • {% endfor %}
{% endif %}
{% endblock %}