From af6167f9d47182cc332ba4f4bdc65cc7ed890726 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Mon, 9 Oct 2017 22:32:36 -0400 Subject: Start the ugly process of cleaning up the views. Added a datepicker to the load date form. Added the 'load_number' field to the LoadCreate view --- app/dispatch/migrations/0002_auto_20171010_0140.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/dispatch/migrations/0002_auto_20171010_0140.py (limited to 'app/dispatch/migrations/0002_auto_20171010_0140.py') diff --git a/app/dispatch/migrations/0002_auto_20171010_0140.py b/app/dispatch/migrations/0002_auto_20171010_0140.py new file mode 100644 index 0000000..499153b --- /dev/null +++ b/app/dispatch/migrations/0002_auto_20171010_0140.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2017-10-10 01:40 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dispatch', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='load', + name='amount', + field=models.DecimalField(decimal_places=2, default='0', max_digits=10), + ), + ] -- cgit v1.2.3