{% extends 'generic/object.html' %} {% load helpers %} {% block content %}
Image Tag
Image
{% if object.image %} {{ object.image }} {% else %} {% endif %}
Tag
{{ object.image_tag }}
OS
{{ object.get_os_display|default:"—" }}
Arch
{{ object.get_arch_display|default:"—" }}
Digest
{{ object.digest|default:"—" }}
Size
{{ object.size|default:"—" }}
Comments
{% if object.comments %}
{{ object.comments }}
{% else %} {% endif %}
Tags
{% if object.tags.count %}
{% for tag in object.tags.all %} {{ tag.name }} {% endfor %}
{% else %} No tags {% endif %}
{% endblock %}