dennisivy/crash-course-CRM — reverse-engineered prompt
Reverse engineered prompt
Build me a simple Django CRM that I can run locally for a small business demo. I want a clean dashboard that shows total orders, delivered orders, pending orders, and a quick view of customers and recent orders.
The app should let me add and manage customers with name, phone, email, and when they were created. It should also have a products page where I can manage products with name, price, category like Indoor or Outdoor, and a description. I need to create orders for customers, choose a product, set the status to Pending, Out for delivery, or Delivered, then update or delete those orders later.
On a customer detail page, show their contact info and all of their orders, with a simple way to filter orders by status. Use basic Bootstrap styling so it looks like a neat tutorial project, not a polished SaaS app. Include the normal Django admin too, and leave clear steps to run migrations and start the server.
Want more depth? Deep Reverse