12 lines
378 B
HTML
12 lines
378 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
|
|
<h1><a href="/">Dashboard</a> » {{ client_name }} » <a href="/{{ client_name }}/images">Images</a>
|
|
» {% if image.attrs['RepoTags']|length %} {{ image.attrs['RepoTags'][0] }} {% else %} {{ image.attrs['Id'][7:]
|
|
}} {% endif %}</h1>
|
|
|
|
<h2>Details</h2>
|
|
<pre>
|
|
{{ image.attrs | pprint }}
|
|
</pre>
|
|
{% endblock %} |