{% extends 'base.html' %} {% block title %}Customer Tags - Optinet Global Links{% endblock %} {% block content %}
Customer Tags
New Tag
{% if tags %}
{% for tag in tags %}
{{ tag.name }} {{ tag.customers.count }} customer{{ tag.customers.count|pluralize }}
{% if tag.description %}

{{ tag.description }}

{% endif %}
{% endfor %}
{% else %}

No tags found

Create your first customer tag to organize your customers.

Create First Tag
{% endif %}
{% endblock %}