{% extends "layouts/base.html" %} {% load static %} {% block title %}Jingle Detections - Stream Processor{% endblock %} {% block content %}

Jingle Detections

Monitor and analyze jingle detection results from stream processing

Total Detections
{{ detections|length|default:0 }}
Confirmed
{% for detection in detections %}{% if detection.is_confirmed %}{{ forloop.counter0|add:1 }}{% endif %}{% empty %}0{% endfor %}
Avg Confidence
{% if detections %} {% for detection in detections %}{{ detection.confidence_score|floatformat:3 }}{% if not forloop.last %},{% endif %}{% endfor %} {% else %} 0.000 {% endif %}
Templates Used
{{ templates|length|default:0 }}
Filters
Clear Filters
Detection Results
{% if detections %}
{% for detection in detections %} {% endfor %}
Template Session Detection Time Confidence Status Frame Actions
{{ detection.template.name }}
{{ detection.template.category|capfirst }}
{{ detection.session.channel.name }}
{{ detection.detection_time|date:"M d, Y" }}
{{ detection.detection_time|time:"H:i:s" }}
{{ detection.confidence_score|floatformat:3 }}
{% if detection.confidence_score >= 0.9 %} High {% elif detection.confidence_score >= 0.7 %} Medium {% else %} Low {% endif %}
{% if detection.is_confirmed %} Confirmed {% else %} Pending {% endif %} {% if detection.frame_path %} {% else %} {% endif %}
{% if not detection.is_confirmed %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}
No Detections Found

No jingle detections have been recorded yet.

{% endif %}
{% endblock %}