{% extends "base.html" %} {% block title %}{{ _('Admin · Ads') }}{% endblock %} {% block content %} {% include "admin/_nav.html" %}

{{ _('Ads') }}

{{ _('+ New ad') }}
{% if not ad_list %}

{{ _('No ads yet.') }}

{% endif %} {% for ad in ad_list %} {% endfor %}
{{ _('Advertiser') }} {{ _('Slot') }} {{ _('Targeting') }} {{ _('Schedule') }} {{ _('Imp.') }} {{ _('Clicks') }} {{ _('CTR') }} {{ _('Status') }}
{{ ad.advertiser_name }} {{ ad.slot }} {% if ad.lang %}lang={{ ad.lang }}{% endif %} {% if ad.geo_state %} state={{ ad.geo_state }}{% endif %} {% if not ad.lang and not ad.geo_state %}—{% endif %} {{ ad.starts_at.strftime('%Y-%m-%d') }} – {{ ad.ends_at.strftime('%Y-%m-%d') }} {{ ad.impressions }} {{ ad.clicks }} {{ ad.ctr }}% {% if ad.is_running %} {{ _('Live') }} {% elif ad.is_active %} {{ _('Scheduled') }} {% else %} {{ _('Off') }} {% endif %}
{% endblock %}