{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Market Validation - Gvelo Enterprise Platform{% endblock %} {% block body_class %}operational-page ops-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Market Validation

Onboarding friction, pain points, feature requests, churn reasons, support trends, and retention drivers.

Record Feedback

Pain Points

{% for item in snapshot.pain_points %}
{{ item.pain_point }} - {{ item.count }}
{% else %}
No pain points yet.
{% endfor %}

Requested Features

{% for item in snapshot.requested_features %}
{{ item.requested_feature }} - {{ item.count }}
{% else %}
No feature requests yet.
{% endfor %}

Recent Feedback

{% for item in snapshot.recent %}
{{ item.title }}

{{ item.detail }}

{{ item.feedback_type }} / {{ item.severity }}
{% else %}
No market feedback yet.
{% endfor %}
{% endblock %}