{% extends "layouts/base.html" %} {% load static %} {% block title %}{{ jingle.name }} - Jingle Details{% endblock %} {% block extra_css %} {% endblock extra_css %} {% block breadcrumb %} {% endblock breadcrumb %} {% block content %}

{{ jingle.name }}

Edit
Jingle Name
{{ jingle.name }}
Type
{{ jingle.get_jingle_type_display|default:jingle.jingle_type }}
Placement
{{ jingle.get_placement_display|default:jingle.placement }}
Duration
{% if jingle.duration %} {{ jingle.duration }} seconds {% else %} Not specified {% endif %}
Priority
{% if jingle.priority == 'critical' %} Critical {% elif jingle.priority == 'high' %} High {% elif jingle.priority == 'medium' %} Medium {% else %} Low {% endif %}
Status
{% if jingle.is_active %} Active {% else %} Inactive {% endif %}
Created
{% if jingle.created_at %} {{ jingle.created_at|date:"M d, Y H:i" }} {% else %} Unknown {% endif %}
{% if jingle.description %}
Description
{{ jingle.description|linebreaks }}
{% endif %}
{% if jingle.file_path %}
Audio File
File: {{ jingle.file_path.name|default:'audio.mp3' }}
{% if jingle.file_path.size %}
Size: {{ jingle.file_path.size|filesizeformat }}
{% endif %}
Format: {{ jingle.file_path.name|slice:"-3:"|upper }}
{% else %}
No Audio File

This jingle doesn't have an associated audio file.

{% endif %}
{% endblock content %} {% block extra_js %} {% endblock extra_js %}