{% extends 'layouts/dashboard.html' %} {% load static %} {% block title %}{{ creative.name }} - Creative Detail - Adtlas{% endblock %} {% block meta_description %}View details for creative: {{ creative.name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ creative.name }}

Edit Delete {% if creative.creative_status == 'pending' %} {% endif %}
Creative Preview
{% if creative.primary_file %} {% if creative.creative_format.format_type == 'video' %} {% elif creative.creative_format.format_type == 'audio' %}
{% else %} {{ creative.name }} {% endif %} {% else %}

No file uploaded

{% endif %}
{% if creative.creative_status == 'approved' %}
Performance Metrics
{{ creative.total_impressions|default:0 }}
Impressions
${{ creative.total_spend|default:0 }}
Spend
{{ creative.click_through_rate|default:0 }}%
CTR
${{ creative.cost_per_mille|default:0 }}
CPM
{% endif %}
Details
Status: {{ creative.get_creative_status_display }}
{% if creative.description %}
Description:

{{ creative.description }}

{% endif %} {% if creative.campaign %} {% endif %} {% if creative.creative_format %}
Format: {{ creative.creative_format.name }}
{% endif %} {% if creative.duration %}
Duration: {{ creative.duration }} seconds
{% endif %} {% if creative.file_size %}
File Size: {{ creative.file_size|filesizeformat }}
{% endif %}
Created: {{ creative.created_at|date:"M d, Y H:i" }}
Created By: {{ creative.created_by.get_full_name|default:creative.created_by.username }}
{% if creative.updated_at != creative.created_at %}
Last Updated: {{ creative.updated_at|date:"M d, Y H:i" }}
{% endif %}
{% if creative.tags.exists %}
Tags
{% for tag in creative.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
Approval History
{% for approval in creative.approvals.all %}
{% if approval.approval_status == 'approved' %} {% elif approval.approval_status == 'rejected' %} {% else %} {% endif %}
{{ approval.get_approval_status_display }}
by {{ approval.reviewer.get_full_name|default:approval.reviewer.username }} on {{ approval.reviewed_at|date:"M d, Y H:i" }}
{% if approval.comments %}
{{ approval.comments }}
{% endif %}
{% empty %}

No approval history yet.

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}