mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-01 15:13:27 +02:00
25 lines
719 B
HTML
25 lines
719 B
HTML
{% extends "ui/panels/_base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block panel_content %}
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Filename" %}</th>
|
|
<td>
|
|
<a href="{{ object.image.url }}" target="_blank">{{ object.filename }}</a>
|
|
<i class="mdi mdi-open-in-new"></i>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Dimensions" %}</th>
|
|
<td>{{ object.image_width }} × {{ object.image_height }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Size" %}</th>
|
|
<td>
|
|
<span title="{{ object.size }} {% trans "bytes" %}">{{ object.size|filesizeformat }}</span>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
{% endblock panel_content %}
|