{% extends "layout.html" %} {% block title %}Packages - Trade Signals{% endblock %} {% block content %}
{% if products %}
{% for product in products %}
{% if 'Indices' in product.name %} {% elif 'Stock' in product.name and 'Intraday' not in product.name %} {% elif 'Intraday' in product.name %} {% elif 'Short Term' in product.name %} {% elif 'Long Term' in product.name %} {% elif 'Multi Bagger' in product.name %} {% elif 'Forex' in product.name %} {% elif 'Crypto' in product.name %} {% else %} {% endif %}

{{ product.name }}

{{ product.description if product.description else 'Premium trading signals for this product category.' }}

{% if product.price == 0 %} Starting from Rs 0 per month {% else %} Starting from Rs {{ "%.0f"|format(product.price) }} per month {% endif %}
Learn More
{% endfor %}
{% else %}

No packages available at the moment.

{% endif %}
{% endblock %}