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

Jingle Templates

Manage reference templates for jingle detection in stream content

Total Templates
{{ templates|length|default:0 }}
Active
{% for template in templates %}{% if template.is_active %}{{ forloop.counter0|add:1 }}{% endif %}{% empty %}0{% endfor %}
Categories
{% regroup templates by category as template_groups %} {{ template_groups|length|default:0 }}
Contributors
{% regroup templates by created_by as user_groups %} {{ user_groups|length|default:0 }}
Search & Filters
Loading...
Clear Filters
Template Library
{% if templates %}
{% for template in templates %}
{% if template.image_path %} {{ template.name }} {% else %}
{% endif %}
{{ template.name }}
{{ template.slug }}
{% if template.is_active %} Active {% else %} Inactive {% endif %}
{% if template.description %}

{{ template.description|truncatewords:20 }}

{% endif %}
Channel: {{ template.channel.name|default:"No Channel" }}
Category: {{ template.get_category_display }}
Threshold: {{ template.similarity_threshold|floatformat:3 }}
Created: {{ template.created_at|date:"M d, Y" }}
By: {{ template.created_by.username }}
{% endfor %}
{% if is_paginated %} {% endif %} {% else %}
No Templates Found

No jingle templates have been created yet. Start by adding your first template.

Add First Template
{% endif %}
{% endblock %}