{% extends "base.html" %} {% load static from staticfiles %} {% load humanize %} {% load display_tags %} {% block add_styles %} .chart {height: 150px} {% endblock %} {% block content %}

Description

{{ prod.description|markdown_render }}

Metrics

{{ critical }} {{ high }} {{ medium }} {{ low }} {{ info }} {{ total }}

Technologies {%if app_analysis%}({{ app_analysis.count }}){%endif%}

    {% for app in app_analysis %}
  • {{ app.version|version_num }}{{ app.name }}
  • {% empty %}
  • There are no technologies.
  • {% endfor %}

Regulations {% if prod.regulations.count > 0%}({{ prod.regulations.count }}){%endif%}

    {% for regulation in prod.regulations.all %}
  • {{ regulation.get_category_display }}{{ regulation.acronym }} {{ regulation.jurisdiction }}
  • {% empty %}
  • There are no regulations.
  • {% endfor %}

Benchmark Progress

    {% for Abenchpercent in benchmarks_percents %}
  • {{Abenchpercent.0}}
    {{Abenchpercent.1}} Complete
    {{Abenchpercent.1}} Complete
  • {% empty %}
  • There are no benchmarks
  • {% endfor %}

Metadata

Business Criticality {{ prod.get_business_criticality_display|notspecified }}
Product Type {{ prod.prod_type|notspecified }}
Platform {{ prod.get_platform_display|notspecified }}
Lifecycle {{ prod.get_lifecycle_display|notspecified }}
Origin {{ prod.get_origin_display|notspecified }}
User Records {% if prod.user_records > 0 %} {{ prod.user_records|intcomma }} {% else %} {{ prod.user_records|notspecified }} {% endif %}
Revenue {% if prod.revenue > 0 %} {% if prod.revenue < 1000000 %}{{ prod.revenue|intcomma }}{% else %}{{ prod.revenue|intword }}{% endif %} {% else %} {{ prod.user_records|notspecified }} {% endif %}
{% if languages %}

Languages ({{ languages.count }})

{% if langSummary.files__sum > 0 %} {{ langSummary.files__sum|intcomma }} files {% if langSummary.code__sum %} and {%endif%} {% endif %} {% if langSummary.code__sum %} {{ langSummary.code__sum|intcomma }} lines of code {% endif %}
{% endif %} {% if product_metadata %}

Custom Fields

{% for key, value in product_metadata.items %} {% endfor %}
{{ key }} {{ value }}
{% endif %}

Contacts

Team Manager {% if prod.manager != "0" %}{{ prod.manager | default:"Unknown" }}{% endif %}
Product Manager {% if prod.prod_manager != "0" %}{{ prod.prod_manager | default:"Unknown" }}{% endif %}
Technical Contact {% if prod.tech_contact != "0" %}{{ prod.tech_contact | default:"Unknown" }}{% endif %}
Authorized Users {% if prod.authorized_users.all %} {% if prod.authorized_users.all.count > 1 %} {% for au in prod.authorized_users.all %} {{au}}{%if not forloop.last%},{%endif%} {% endfor %} {% else %} {{ prod.authorized_users.all.0 }} {% endif %} {% else %} {{ prod.authorized_users.all|notspecified }} {% endif %}
{% endblock %} {% block postscript %} {% endblock %}