{% extends "base.html" %} {% import "bootstrap5/utils.html" as util %} {% block title %}{{ title }} ({{ "{:,d}".format(n_predictions) }}){% endblock %} {% macro progress_color(confidence) -%} {% if confidence > 85 %} bg-success {% elif confidence > 60 %} bg-warning {% else %} bg-danger {% endif %} {%- endmacro %} {% macro render_pagination_element(state, b) %}
{{ query }} ({{ "{:,d}".format(n_predictions) }} Results)
{% else %}
{% endif %}
| Subject | Subject Name | {% if show_relations %}Predicate | {% endif %}Object | Object Label | Conf. | |||||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ p.subject.curie }} | {{ p.subject_name }} | {% if show_relations %}{{ p.predicate.curie }} | {% endif %}{{ p.object.curie }} | {{ p.object_name }} |
{% set confidence = ((p.confidence | float) * 100) | int %}
|