aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2021-10-14Tweak the entrypoint for slow systems.Mitchell Riedstra1-1/+6
2021-10-14Adjust the documentation.Mitchell Riedstra1-129/+27
2021-10-14Move to environment vars. Create a container that sets up a demo.Mitchell Riedstra16-398/+343
Instead of the old method with scripts, docker-compose file, everything is pulled into the main container with various configuration options allowed from environment variables. Also move settings.py away from the old yaml setup and pull directly from the environment instead.
2021-10-10Rip out registration and the audit log for now. Upgrade to Django 3.2Mitchell Riedstra8-58/+41
2019-09-15Clean up the documentation a little bit moredemodocker-composeMitch Riedstra2-60/+75
2019-09-14Switch to 11-alpine for postgres imageMitch Riedstra1-1/+1
2019-09-14Some minor changes to the login template, as well as some hacking for the ↵Mitch Riedstra5-14/+29
demo login form. Updated the links to my website
2019-09-14Fully automated setup and forward port 36200Mitch Riedstra8-34/+78
2019-03-27Add some documentatoinMitch Riedstra1-2/+22
2019-03-27Fully dockerized environmentMitch Riedstra9-15/+242
2019-03-23messing aroundMitch Riedstra2-0/+35
2019-01-20Modified the `insert_fake_data` example to include invoices and attachmentsdjango-2Mitch Riedstra1-1/+3
2019-01-19Update requirements.txtMitch Riedstra1-2/+2
2019-01-19Most things seem to work, needs more testingMitch Riedstra8-24/+52
2018-04-27Fixed previous/next button issues with the customers page1.1Mitch Riedstra2-3/+5
2018-04-27Fixed mobile responsiveness and some text issuesKyle Blanker23-124/+406
Everything but audit log related sections are mobile responsive. Fixed some text issues with Customers being called Companies and Vendors being called Drivers
2018-04-26Fixed issue with color being removed from all invoices because we're not ↵Mitch Riedstra1-0/+1
checking for the user in the query
2018-03-25Remove color coding entirely if the load is paid for.Mitch Riedstra4-3/+16
Added audit log to the navigation bar as well. Removed commented out urls related to previous versions of the audit log.
2018-03-25Igrnore my tags fileMitch Riedstra1-0/+1
2018-02-17Order invoiceitems by dateMitch Riedstra2-1/+4
2018-02-13Add logging for Invoices, User Invoice Number, and Identity. Added template ↵Mitch Riedstra5-1/+93
to show audit logs as well as a view
2018-02-10Ignore local Postgres dataMitch Riedstra1-0/+1
2018-02-04Add in delivered to to the filename on downloadMitch Riedstra2-2/+4
2018-02-04Fix issue with averages not being displayed due to an invoice existing.Mitch Riedstra2-17/+32
Also fixed filename parsing. Modified django's function and placed it in dispatch/misc.py
2018-02-03Fix error in invoice view template using wrong ID for link to summaryMitch Riedstra1-1/+1
2018-02-03Siwtch user to use the context, not the current one logged inMitch Riedstra1-1/+1
2018-02-03Show whether or not there are any related invoices on the summary pageMitch Riedstra4-12/+47
Also prevent the generation of duplicate invoices based on the date of invoice and the current user.
2018-01-23Don't allow slases in filnames, I really need to do a better job of parsing ↵Mitch Riedstra1-0/+1
this bullshit
2018-01-23Move paperwork download code out into a function and add ability to download ↵Mitch Riedstra4-36/+62
paperwork for users
2018-01-09Added filters for customer in templates. Show number of loads in customer ↵Mitch Riedstra2-8/+32
list view
2018-01-09Add the ability to download all of the paperwork from a customer viewMitch Riedstra4-15/+47
2018-01-09Initial version of paperwork download--still doesn't download lolMitch Riedstra3-3/+53
2018-01-08Updated the company template to fix the date display, as well as the ↵Mitch Riedstra1-4/+5
previous and next buttons.
2018-01-08Final touches on fake invoice generationMitch Riedstra1-42/+12
2018-01-08Initial ability to generate invoices from the fake data toolMitch Riedstra2-2/+79
2017-12-19Misc changes for the videoMitch Riedstra6-6/+13
2017-12-19Added an option to insert attachemnts onto the loads with the fake data ↵Mitch Riedstra2-8/+40
generator
2017-11-29Update the config file and fix the home page when there is no home page blurbMitch Riedstra2-4/+4
2017-11-27Add snippets to the home page from the configuration fileMitch Riedstra5-4/+60
2017-11-27Keep the current date range when switching to Driver/Customer viewsMitch Riedstra1-2/+11
2017-11-22Change Drivers to vendors in some locations. Remove description field for ↵Mitch Riedstra12-14/+89
uploads, changed to filename. Still need to update template.
2017-11-10Update readme1.0Mitch Riedstra1-26/+15
2017-11-10Working invites in the Driver's list pageMitch Riedstra9-9/+61
2017-11-10User registration works. User invites work but has no UIMitch Riedstra8-10/+53
2017-11-10Initial version of registration system--needs workMitch Riedstra14-4/+107
2017-11-10Fix typo in 'payment_identifier' Add pagination to Drivers, Customers and ↵Mitch Riedstra12-94/+255
Invoices. Filter invoices by paid/unpaid.
2017-11-09Show number of attachments, and color code issues with loads.Mitch Riedstra17-64/+205
Prevent invoice generation on zero amounts and no attachments. Add a way for superusers to edit invoices. Add a field to invoices for a payment identifier. E.g. "Check #1234"
2017-11-07Updated middleware to force creation of user Identity. Fix issues with ↵Mitch Riedstra5-4/+42
Identity creation. Added is_active to Django Admin UI for the dispatchAuth.models.User
2017-11-06Update the driver Detail page. Still need to fix the Identity Create functionMitch Riedstra4-7/+25
2017-11-06Rename config to config-example and allow it to be loaded if config does not ↵Mitch Riedstra5-12/+35
exist. Define email settings in config. Remove Django admin from the Admin's Nav.