diff --git a/myproject/myapp/receipts.py b/myproject/myapp/receipts.py new file mode 100644 index 0000000000000000000000000000000000000000..1194d56808eb17a228a1095f00a7350ee0a8d5fc --- /dev/null +++ b/myproject/myapp/receipts.py @@ -0,0 +1,8 @@ +# We want to generate receipts for user monthly billing. +# We want the function to accept a user +# It should return the user's username, blanked out details and cost +from fpdf import FPDF + +class PDF(FPDF): + pass # do nothing when it's executed +