summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/account/image_list.html
blob: 72ea1f5b763e3fe5bf50e24e6d867b795356f0bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{% extends "base.html" %}
{% block content %}
<h2>Images I Own</h2>
    {% for image in images %}
        <div class="detail_card">
            <ul>
            <li>id: {{image.id}}</li>
            <li>lab: {{image.from_lab.name}}</li>
            <li>name: {{image.name}}</li>
            <li>description: {{image.description}}</li>
            <li>host profile: {{image.host_type.name}}</li>
            </ul>
        </div>
    {% endfor %}
<h2>Public Images</h2>
    {% for image in public_images %}
        <div class="detail_card">
            <ul>
            <li>id: {{image.id}}</li>
            <li>lab: {{image.from_lab.name}}</li>
            <li>name: {{image.name}}</li>
            <li>description: {{image.description}}</li>
            <li>host profile: {{image.host_type.name}}</li>
            </ul>
        </div>
    {% endfor %}
{% endblock %}