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

Images I Own

{% for image in images %}

Image {{image.id}}

  • id: {{image.id}}
  • lab: {{image.from_lab.name}}
  • name: {{image.name}}
  • description: {{image.description}}
  • host profile: {{image.host_type.name}}
{% endfor %}

Public Images

{% for image in public_images %}

Image {{image.id}}

  • id: {{image.id}}
  • lab: {{image.from_lab.name}}
  • name: {{image.name}}
  • description: {{image.description}}
  • host profile: {{image.host_type.name}}
{% endfor %}
{% endblock %}