{% extends "aristotle_mdr/reviews/review/base.html" %}
{% load i18n humanize %}
{% load aristotle_tags util_tags %}
{% load static from staticfiles %}
{% load render_bundle from webpack_loader %}
{% block webpack_bundle %}
{% render_bundle 'review_items' 'js' %}
{% endblock %}
{% block title %}Review details - items {{ item.name }}{% endblock %}
{% block tabpanel %}
Item Details | Last Modified | |
---|---|---|
{% include "aristotle_mdr/helpers/inlineDetails.html" with item=concept.item %} |
{% if concept.remove %}
|
Item | Results |
---|---|
{{ agg.item_name }} |
{% if not setup_valid %}
No Validation rules avaliable {% else %} {% with results=agg.results %}
{% for result in agg.results %}
{% endwith %}
{% endif %}
{% if result.status %}
Success
{% elif result.rule.severity == 'warning' %}
Warning
{% else %}
Failure
{% endif %}
{{ result.validator.get_name }}
{% if result.validator.rule.description %}
{% endif %}
{% if result.message %}
{{ result.message }} {% endif %} {% if result.validator.rule.description %}
{{result.validator.rule.description}}
|