{% extends "base.html" %} {% load static %} {% block title %}{% if object %}Edit Claim{% else %}Submit Insurance Claim{% endif %} - {{ block.super }}{% endblock %} {% block content %}

{% if object %}Edit Insurance Claim{% else %}Submit Insurance Claim{% endif %}

{% if object %}
Claim #: {{ object.claim_number }}
{% endif %}
Back to List {% if object %} View Details {% endif %}
{% csrf_token %}
Bill Information
{% if object %}
Current Bill: {{ object.medical_bill.bill_number }}
Patient: {{ object.medical_bill.patient.get_full_name }}
{% endif %}
Insurance & Service Dates
{{ form.insurance_info }} {% if form.insurance_info.errors %}
{{ form.insurance_info.errors.0 }}
{% endif %}
{{ form.service_date_from }} {% if form.service_date_from.errors %}
{{ form.service_date_from.errors.0 }}
{% endif %}
{{ form.service_date_to }} {% if form.service_date_to.errors %}
{{ form.service_date_to.errors.0 }}
{% endif %}
Claim Details
{{ form.billed_amount }} {% if form.billed_amount.errors %}
{{ form.billed_amount.errors.0 }}
{% endif %}
{{ form.claim_type }} {% if form.claim_type.errors %}
{{ form.claim_type.errors.0 }}
{% endif %}
{{ form.clearinghouse }} {% if form.clearinghouse.errors %}
{{ form.clearinghouse.errors.0 }}
{% endif %}
{{ form.batch_number }} {% if form.batch_number.errors %}
{{ form.batch_number.errors.0 }}
{% endif %}
{{ form.prior_auth_number }} {% if form.prior_auth_number.errors %}
{{ form.prior_auth_number.errors.0 }}
{% endif %}
{{ form.notes }} {% if form.notes.errors %}
{{ form.notes.errors.0 }}
{% endif %}
Claim Line Items
Service Code * Description * Service Date * Quantity * Amount * Actions
Total Billed Amount: $0.00
Claim Summary
Total Billed: $0.00
Line Items: 0
Expected Copay: $0.00

Expected Payment: $0.00
Quick Actions
Help & Guidelines

  • ICD-10 for diagnosis
  • CPT/HCPCS for procedures
  • Verify current codes

  • Service dates within coverage period
  • Valid codes & correct POS
  • Provider credentials verified

  • File within time limits
  • Attach required docs
  • Review before submit
{% endblock %}