Here's what I've been able to accomplish so far:
Registration & Login
This is the only "functional" part of the system right now. I'm taking advantage of Django's authentication system.
You have to be logged in to see the other pages in the system.
Logging out ends your session and redirects to the login page.
Dashboard
Nothing to see here. I just included this so I can have a page to redirect to when users log in. This will be the very last thing I do because everything else has to be working to get data to show here.
Jobs
This is where jobs will be listed. Jobs can fall into three categories:
- Estimates (or drafts)
- In progress (confirmed and currently being worked on)
- Done
I'm using tabs to separate them.
Next steps
I can't create jobs without clients and vehicles so that's what I'll be working on next.