{% extends "base.html" %} {% block content %}

{{ tr("Service Price Table") }}

{{ tr("Tương Tác Real publishes transparent social engagement service prices in TIC, updated continuously based on system configuration.") }}

{{ tr("There are currently {count} publicly listed services for your review before placing orders.", count=services|length) }}

{% if not services %}

{{ tr("No public services available yet.") }}

{% else %}
{% for service in services %} {% endfor %}
{{ tr("Service ID") }} {{ tr("Name") }} {{ tr("Min") }} {{ tr("Max") }} {{ tr("Price / 1") }}
{{ service['service_id'] }} {{ service['service_name_display'] }} {{ service['min_qty'] or '-' }} {{ service['max_qty'] or '-' }} {{ service['price_per_1000_tic']|ticfmt }} TIC
{% endif %}

{{ tr("Transparent social service pricing that is easy to reconcile") }}

{{ tr("Each service displays service code, minimum/maximum quantity, and TIC unit price so you can estimate costs before ordering.") }}

{{ tr("The public price table helps you quickly verify options before signing in and topping up TIC, reducing mistakes when selecting the right service for your growth goals.") }}

{{ tr("Frequently asked questions about service pricing") }}

{{ tr("What does TIC unit pricing mean?") }}

{{ tr("Unit pricing is shown in TIC so you can estimate budget before placing an order. The system calculates the exact fee based on your requested quantity.") }}

{{ tr("Do I need to sign in to view prices?") }}

{{ tr("No. This page publicly lists all active services so you can compare prices and plan before creating an account.") }}

{{ tr("Why does each service have Min/Max limits?") }}

{{ tr("Min/Max limits keep orders within each service capacity, reducing errors from quantities that are too low or too high.") }}

{% endblock %}