{% extends "base.html" %} {% block title %}Try It Now – Resume Ranker API{% endblock %} {% block extra_head %} {# Link any specific CSS for this page here if separate from dashboard.css #} {% endblock %} {% block content %}

Try It Now

Upload resumes and a job description to get instant rankings.

{% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success }}
{% endif %}

Submit Test Request

{% if response %}

🔍 Resume Ranking Results

Job Description: {{ response.job_description | truncate(150, true) }}

{# Truncate for display #}
{% for r in response.ranked_resumes %} {% endfor %}
Filename Score
{{ r.filename }} {{ r.score }}
{% endif %}

← Back to Dashboard

{% endblock %} {% block extra_scripts %} {% endblock %}