{% extends "base.html" %} {% block title %}Select Product - Reklamator{% endblock %} {% block content %}

Submit Feedback

{% if products %}

Select a product to share your feedback, report issues, or suggest improvements.

{% if current_user and current_user.is_authenticated and current_user.role == 'product_owner' %}

Product Owner: Go to Dashboard to view and analyze feedback.

{% endif %}
{% for product in products %}

{{ product.name }}

{% if product.description %}

{{ product.description }}

{% endif %} Submit Feedback
{% endfor %}
{% else %}

No products are currently accepting feedback. Please check back later.

{% endif %} {% endblock %}