diff --git a/osinaweb/addressbook/__pycache__/models.cpython-313.pyc b/osinaweb/addressbook/__pycache__/models.cpython-313.pyc index 71bea67d..989ac871 100644 Binary files a/osinaweb/addressbook/__pycache__/models.cpython-313.pyc and b/osinaweb/addressbook/__pycache__/models.cpython-313.pyc differ diff --git a/osinaweb/addressbook/models.py b/osinaweb/addressbook/models.py index 07ca58e4..e1ea4041 100644 --- a/osinaweb/addressbook/models.py +++ b/osinaweb/addressbook/models.py @@ -30,9 +30,16 @@ class AddressBook(models.Model): class Comment(models.Model): + COMMENT_TYPE_CHOICES = ( + ('Status', 'Status'), + ('DailyReport', 'DailyReport'), + ('ProspectingListItem', 'ProspectingListItem'), + ) content = models.TextField() date_added = models.DateTimeField(auto_now_add=True) added_by = models.ForeignKey(User, on_delete=models.CASCADE) + type = models.CharField(max_length=20, choices=COMMENT_TYPE_CHOICES) + type class ProspectingListItem(models.Model): diff --git a/osinaweb/customercore/__pycache__/custom_context.cpython-313.pyc b/osinaweb/customercore/__pycache__/custom_context.cpython-313.pyc index 145153e9..5f3d5ea1 100644 Binary files a/osinaweb/customercore/__pycache__/custom_context.cpython-313.pyc and b/osinaweb/customercore/__pycache__/custom_context.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/urls.cpython-313.pyc b/osinaweb/customercore/__pycache__/urls.cpython-313.pyc index 117320bc..c060ac8a 100644 Binary files a/osinaweb/customercore/__pycache__/urls.cpython-313.pyc and b/osinaweb/customercore/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/views.cpython-313.pyc b/osinaweb/customercore/__pycache__/views.cpython-313.pyc index f180021f..eff5acc6 100644 Binary files a/osinaweb/customercore/__pycache__/views.cpython-313.pyc and b/osinaweb/customercore/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/custom_context.cpython-313.pyc b/osinaweb/osinacore/__pycache__/custom_context.cpython-313.pyc index f9850439..615049d5 100644 Binary files a/osinaweb/osinacore/__pycache__/custom_context.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/custom_context.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc index 566235df..c08a419f 100644 Binary files a/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/__pycache__/views.cpython-313.pyc index 55eb7112..0c33537d 100644 Binary files a/osinaweb/osinacore/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/add/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/add/__pycache__/views.cpython-313.pyc index d27e2437..ef1027b5 100644 Binary files a/osinaweb/osinacore/add/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/add/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/templates/login.html b/osinaweb/osinacore/templates/login.html index a50d8375..43f157b5 100644 --- a/osinaweb/osinacore/templates/login.html +++ b/osinaweb/osinacore/templates/login.html @@ -92,19 +92,6 @@