{% extends "base.html" %} {% block title %}Home - Invoice Generation Service{% endblock %} {% block content %}
This application allows you to create, manage, and track invoices. Use the navigation menu above to access different features.
Generate new invoices with customer information, due dates, and line items.
Create InvoiceInvoice 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 |