Profile

{% if user.is_admin %} Admin {% endif %} Dashboard Sign Out

Account

Email: {{ user.email }}
Name: {{ user.name or '-' }}
Tier: {% if user.tier == 'paid' %} Paid {% else %} Free {% endif %}
Scrapes: {{ user.scrapes_used }} / {{ user.scrapes_limit }}
Remaining: {{ remaining }}
{% if user.license_key %}
License: Active
{% endif %}
{% if user.tier == 'free' and remaining == 0 %}

You've used all your free scrapes.

Contact {{ config.admin_email }} to upgrade. Price: ₹{{ config.price_per_month }}/month.

{% endif %}

Scrape History

{% if logs %}
{% for log in logs %} {% endfor %}
Date Query Results
{{ log.created_at | int | timestamp_to_date }} {{ log.query }} {{ log.results_count }}
{% else %}

No scrapes yet.

{% endif %}