Back to Netbox

Object Imageattachments

netbox/templates/extras/object_imageattachments.html

4.6.51.1 KB
Original Source

{% extends base_template %} {% load helpers %} {% load i18n %} {% load render_table from django_tables2 %} {% load thumbnail %} {% block extra_controls %} {% if perms.extras.add_imageattachment %} {% trans "Attach an Image" %} {% endif %} {% endblock %} {% block content %} {% if image_attachments %}

{% for object in image_attachments %} {% thumbnail object.image "200x200" crop="center" as tn %} {% empty %} [

{% trans "Thumbnail cannot be generated" %}

{% trans "Click to view original" %}

]({{%20object.get_absolute_url%20}} "{{ object.name }}") {% endthumbnail %} {{ object }}

{% endfor %} {% else %} {% blocktrans with object_type=object|meta:"verbose_name" %} No images have been attached to this {{ object_type }}. {% endblocktrans %} {% endif %} {% endblock %}