{% extends "base.html" %} {% block title %}Home - Invoice Generation Service{% endblock %} {% block content %}

Welcome to the Invoice Generation Service

This application allows you to create, manage, and track invoices. Use the navigation menu above to access different features.

Create Invoices

Generate new invoices with customer information, due dates, and line items.

Create Invoice

Find Invoices

Look up existing invoices by their unique invoice number.

Find Invoice
{% if invoices %}

Recent Invoices

{% for invoice in invoices %} {% endfor %}
Invoice Number Customer Date Created Due Date Total Amount Status Actions
{{ invoice.invoice_number }} {{ invoice.customer_name }} {{ invoice.date_created.strftime('%Y-%m-%d') }} {{ invoice.due_date.strftime('%Y-%m-%d') }} ${{ "%.2f"|format(invoice.total_amount) }} {{ invoice.status }} View
{% endif %} {% endblock %} {% block extra_css %} {% endblock %}