{% extends "certification/certification.html" %} {% block content-body %}

{% if relatedSelfType == "original" %}

This is a Base RHEL Hardware Certification

{% elif relatedSelfType == "layered" %}

This is a Layered Certification

{% elif "pass-through" in relatedSelfType %}

This is a Pass-Through Certification

{% elif relatedSelfType == "supplemental" %}

This is a Supplemental Certification

{% endif %} {% if parent_certification %} {% include "include/leverage-notification.html" %}

Original Certification:

{% with redhat_product=relatedParent.product.product %}
Certification Vendor Make Model Category ID
{{ parent_certification.redhatProduct }} {{ parent_certification.redhatProductVersion }} {% if parent_certification.redhatProductVersionPlatform %} - {{ parent_certification.redhatProductVersionPlatform }} {% endif %} {{ parent_certification.vendor.getName }} {{ parent_certification.vendorProduct.getMake }} {{ parent_certification.vendorProduct.getName }} {{ parent_certification.vendorProduct.getCategory }} {% if relatedSelfType == "pass-through" and parent_certification.vendorProduct.getCategory == "Component/Peripheral" %} {{ parent_certification.certification_id }}   {% else %} {{ parent_certification.certification_id }} {% endif %}
{% endwith %}
{% endif %}

{% for relationshipType, certificationsByType in relatedCertifications.iteritems %}

{{ certificationsByType.title }}

{{certificationsByType.description }}

{% if relationshipType == "supplemental" %} {% elif relationshipType == "layered" %} {% elif relationshipType == "pass_through" %} {% endif %} {% for certification in certificationsByType.certifications %} {% endfor %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
Certification Vendor Make Model Category ID
{{ certification.redhatProduct }} {{ certification.redhatProductVersion }} {% if certification.redhatProductVersionPlatform %} - {{ certification.redhatProductVersionPlatform }} {% endif %} {{ certification.vendor.getName }} {{ certification.vendorProduct.getMake }} {{ certification.vendorProduct.getName }} {{ certification.vendorProduct.getCategory }} {% if relationshipType == "pass-through" and certification.vendorProduct.getCategory == "Component/Peripheral" %} {{ certification.certification_id }}   {% else %} {{ certification.certification_id }} {% endif %}
{% endfor %} {% endblock content-body %}