{% extends 'manager/base.html' %} {% load static %} {% load i18n %} {% block title %}{% trans "User Segmentation" %}{% endblock %} {% block header.add_script %} {% endblock %} {% block content %}
{% trans "Saved Segments" %}
{% if saved_segments %} {% for segment in saved_segments %}
{{ segment.name }}
{% if segment.description %}

{{ segment.description }}

{% endif %} {% trans "Created by" %} {{ segment.created_by.first_name }} {{ segment.created_by.last_name }} {% trans "on" %} {{ segment.created_at|date:"M d, Y" }} {% if segment.is_shared %} {% trans "Shared" %} {% endif %}
{% endfor %} {% else %}

{% trans "No saved segments yet" %}

{% endif %}
{% trans "Build Custom Segment" %}
{% trans "Based on last login activity" %}
{% trans "Users active within X days" %}
{% trans "Segment Results" %}
{{ users.paginator.count }} {% trans "users found" %}
{{ users.paginator.count }}
{% trans "Total Users" %}
-
{% trans "Active Users" %}
-
{% trans "Avg Points" %}
-
{% trans "High Risk" %}
{% if users %} {% for user in users %}
{% if user.profile.first_name or user.profile.last_name %} {{ user.profile.first_name }} {{ user.profile.last_name }} {% else %} {% trans "User" %} #{{ user.id }} {% endif %}

{{ user.phone_number }}

{% if user.profile.email %}

{{ user.profile.email }}

{% endif %} {% if user.company %}

{{ user.company.name }}

{% endif %}
{{ user.lacto_points_score }} {% trans "Points" %} {{ user.churn_risk_score }} {% trans "Risk" %}
{% with subscription=user.subscription_info %}
{{ subscription.status }}
{% endwith %}
{% endfor %} {% if users.has_other_pages %} {% endif %} {% else %}
{% trans "No users match the current filters" %}

{% trans "Try adjusting your filter criteria" %}

{% endif %}
{% endblock %}