{% extends "common/base.html" %} {% load crispy_forms_tags %} {% load static %} {% block title %} Resource Detail {% endblock %} {% block content %}
Name: | {{ resource.name }} |
---|---|
Description: | {{ resource.description }} |
Resource Type: | {{ resource.resource_type }} |
Parent Resource: | {% if resource.parent_resource %} {{ resource.parent_resource }} {% else %} {{ resource.parent_resource }} {% endif %} |
Linked Resources: |
{% if resource.linked_resources.all %}
{% for resource in resource.linked_resources.all %}
{{ resource }} {% endfor %} {% else %} None {% endif %} |
Public/Private: | {% if resource.is_public %} Public {% else %} Private {% endif %} |
Attribute | Value |
---|---|
{{attribute.resource_attribute_type.name}} | {{attribute.value}} |
Resource Name | WarrantyExpire | ServiceEnd | Vendor | Serial # | Model |
---|---|---|---|---|---|
{{child.object}} | {{child.WarrantyExpirationDate}} | {{child.ServiceEnd}} | {{child.Vendor}} | {{child.SerialNumber}} | {{child.Model}} |