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

Quote Requests

{% for r in rows %}
#{{ r.id }} • {{ (r.created_at or '')[:19].replace('T',' ') }}

{{ r.name }}

{{ r.email }}
{% set tl = (r.urgency or '-') %} {% set st = r.status if r.status else 'open' %} {{ st }} {{ tl }}
What they need
{{ r.project_type or '-' }}
Scope
{{ r.complexity or '-' }}
Extras
{{ r.features or '-' }}
Budget
{{ r.budget_range or '-' }}
Est. Hours
{{ r.est_hours }}
Est. Cost
${{ '%.2f'|format(r.est_cost or 0) }}
Client notes
{{ (r.description or '—') }}
{% if not r.deleted_at and (r.status or 'open') != 'completed' %}
{% endif %} {% if not r.deleted_at %}
{% else %} Deleted {% endif %}
{% endfor %}

Notes

Client notes


        

Raw submission (JSON)


        
{% endblock %}