mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load helpers %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
<div class="card">
 | 
						|
  <h5 class="card-header">
 | 
						|
    {% trans "Inventory Items" %}
 | 
						|
    {% if perms.dcim.add_inventoryitem %}
 | 
						|
      <div class="card-actions">
 | 
						|
        <a href="{% url 'dcim:inventoryitem_add' %}?device={{ object.device.pk }}&component_type={{ object|content_type_id }}&component_id={{ object.pk }}&return_url={{ object.get_absolute_url }}" class="btn btn-ghost-primary btn-sm">
 | 
						|
          <span class="mdi mdi-plus-thick" aria-hidden="true"></span> {% trans "Add Inventory Item" %}
 | 
						|
        </a>
 | 
						|
      </div>
 | 
						|
    {% endif %}
 | 
						|
  </h5>
 | 
						|
  <table class="table table-hover">
 | 
						|
    <thead>
 | 
						|
      <tr>
 | 
						|
        <th>{% trans "Name" %}</th>
 | 
						|
        <th>{% trans "Label" %}</th>
 | 
						|
        <th>{% trans "Role" %}</th>
 | 
						|
        <th></th>
 | 
						|
      </tr>
 | 
						|
    </thead>
 | 
						|
    <tbody>
 | 
						|
      {% for item in object.inventory_items.all %}
 | 
						|
        <tr>
 | 
						|
          <td>{{ item|linkify:"name" }}</td>
 | 
						|
          <td>{{ item.label|placeholder }}</td>
 | 
						|
          <td>{{ item.role|linkify|placeholder }}</td>
 | 
						|
          <td class="text-end d-print-none">
 | 
						|
            {% if perms.dcim.change_inventoryitem %}
 | 
						|
              <a href="{% url 'dcim:inventoryitem_edit' pk=item.pk %}?return_url={{ object.get_absolute_url }}" class="btn btn-warning lh-1" title="{% trans "Edit" %}">
 | 
						|
                <i class="mdi mdi-pencil" aria-hidden="true"></i>
 | 
						|
              </a>
 | 
						|
            {% endif %}
 | 
						|
            {% if perms.ipam.delete_inventoryitem %}
 | 
						|
              <a href="{% url 'dcim:inventoryitem_delete' pk=item.pk %}?return_url={{ object.get_absolute_url }}" class="btn btn-danger lh-1" title="{% trans "Delete" %}">
 | 
						|
                <i class="mdi mdi-trash-can-outline" aria-hidden="true"></i>
 | 
						|
              </a>
 | 
						|
            {% endif %}
 | 
						|
          </td>
 | 
						|
        </tr>
 | 
						|
      {% empty %}
 | 
						|
        <tr>
 | 
						|
          <td colspan="5" class="text-muted">{% trans "None" %}</td>
 | 
						|
        </tr>
 | 
						|
      {% endfor %}
 | 
						|
    </tbody>
 | 
						|
  </table>
 | 
						|
</div>
 |