{% import "bootstrap/utils.html" as utils %} {% extends "base.html" %} {% block title %}Classifications{% endblock %} {% block body %}

{{ utils.flashed_messages() }}

Classifications

{% if classifications %}
{% for classification in classifications %} {% endfor %}
Pattern* Brand Sub Brand DSP Use Campaign Id Use Campaign Use Placement Id** Use Placement** Edit Delete
{{ classification.pattern }} {{ classification.brand }} {{ classification.sub_brand }} {{ classification.dsp }} {{ classification.use_campaign_id }} {{ classification.use_campaign }} {{ classification.use_placement_id }} {{ classification.use_placement }} Edit Delete

* Pattern will always be regex and ignore case sensitivity

** Valid only in DCM files

{% else %}

No classifications have been added.


{% endif %}
Add Classification Refresh Classification
{% endblock %}