# dispatch-tracker Requirements going forward: * Make the navbar work on mobile * Don't return to the home page when you edit a load from the driver summary page * Show Recent Changes on Loads ( Django auditlog ) * Show the uploaded paperwork on `/loads/view/$load_id` * Allow admins to delete paperwork * force unique filenames on upload * Downloads should retain original filenames * Add a delivered to field to the loads * Allow admins to leave it blank * Require that drivers/non-admins fill it in * /loads * Give a warning when any loads don't have paperwork attached to them * Make loads without paperwork blue * Make loads with paperwork green * /drivers/view * Give a warning when any loads don't have paperwork attached to them * Make loads without paperwork blue * Make loads with paperwork green * A way for users to be invited via email * Company statistics on the "Company Summary" view * Upload paperwork to a load page for retrieval later on * More descriptive buttons than "View"/"Edit" To get a development system setup: ``` bash cd app virtualenv env . env/bin/activate pip install -r requirements.txt ./manage.py migrate ./manage.py createsuperuser # This will create some fake records if you wish ./manage.py insert_fake_data --companies 10 --users 10 \ --loads 400 --start-date='-16w' --end-date='+16w' # Default is 2 weeks for start/end date, no # defaults for any other options # Run a local development server, listens to the world ./manage.py runserver 0.0.0.0:8080 ```