{% extends 'base.html' %} {% load static %} {% block title %}Job Posting Generator Agent - Quantum Tasks AI{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% include "components/agent_header.html" with agent_title="Job Posting Generator" agent_subtitle="Create professional job postings with AI-powered content generation" %} {% include "components/quick_agents_panel.html" %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %}

📝 Job Posting Form

{% csrf_token %}
{% if user.is_authenticated %} {% if user.wallet_balance >= agent.price %} {% else %}
Insufficient balance! You need {{ agent.price }} AED.
💰 Top Up Wallet {% endif %} {% else %} 🔑 Login to Continue {% endif %}

â„šī¸ How It Works

  1. Enter job requirements
  2. Configure position details
  3. Process with AI
  4. Get professional posting
{% include "components/processing_status.html" with status_title="Creating Job Posting..." status_text="Please wait while we generate your professional job posting..." %}
{% include "components/results_container.html" with results_title="Generated Job Posting" %}
{% endblock %} {% block extra_js %} {% endblock %}