diff --git a/company_site/financial/templates/financial/invoice_new.html b/company_site/financial/templates/financial/invoice_new.html new file mode 100644 index 0000000..91a9a4a --- /dev/null +++ b/company_site/financial/templates/financial/invoice_new.html @@ -0,0 +1,25 @@ +{% extends "base.html" %} +{% load static %} + +{% block title %}New Invoice - AI ML Operations{% endblock %} + +{% block content %} +
+
+
+ Back to Invoices +
+

New one-off invoice

+

+ Creates a Stripe invoice (customer pays us) and optionally emails the pay link. +

+
+
+ {% csrf_token %} + {{ form.as_p }} + +
+
+
+
+{% endblock %}