diff --git a/osinaweb/addressbook/__pycache__/models.cpython-313.pyc b/osinaweb/addressbook/__pycache__/models.cpython-313.pyc index 98024aa4..09b88c35 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/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0001_initial.cpython-313.pyc index cd8ecf76..5e37b9d7 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0002_country_addressbook.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0002_country_addressbook.cpython-313.pyc index bafedcfd..402396d3 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0002_country_addressbook.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0002_country_addressbook.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0003_contact.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0003_contact.cpython-313.pyc index 50a12e94..5d91b080 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0003_contact.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0003_contact.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0004_socialmedia.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0004_socialmedia.cpython-313.pyc index 74c5efa7..f14842b5 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0004_socialmedia.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0004_socialmedia.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0005_socialmedia_addressbook.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0005_socialmedia_addressbook.cpython-313.pyc index 78f08ad0..6209e853 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0005_socialmedia_addressbook.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0005_socialmedia_addressbook.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/0006_comment_prospectinglist_prospectinglistitem.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/0006_comment_prospectinglist_prospectinglistitem.cpython-313.pyc index 1a75d91b..7d9a5cdc 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/0006_comment_prospectinglist_prospectinglistitem.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/0006_comment_prospectinglist_prospectinglistitem.cpython-313.pyc differ diff --git a/osinaweb/addressbook/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/addressbook/migrations/__pycache__/__init__.cpython-313.pyc index aa5971a7..3f282f25 100644 Binary files a/osinaweb/addressbook/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/addressbook/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/addressbook/models.py b/osinaweb/addressbook/models.py index 98767c20..36ce2db1 100644 --- a/osinaweb/addressbook/models.py +++ b/osinaweb/addressbook/models.py @@ -20,6 +20,7 @@ class ProspectingList(models.Model): date_added = models.DateTimeField(auto_now_add=True) added_by = models.ForeignKey(User, on_delete=models.SET_NULL, null=True, blank=True) + class AddressBook(models.Model): first_name = models.CharField(max_length=100) middle_name = models.CharField(max_length=100, blank=True, null=True) @@ -30,7 +31,7 @@ class AddressBook(models.Model): class ProspectingListItem(models.Model): prospecting_list = models.ForeignKey(ProspectingList, on_delete=models.CASCADE) - addressbook = models.ForeignKey(AddressBook, on_delete=models.CASCADE) + addressbook = models.ForeignKey(AddressBook, on_delete=models.CASCADE) date_added = models.DateTimeField(auto_now_add=True) attention = models.BooleanField(default=False) @@ -65,4 +66,4 @@ class SocialMedia(models.Model): class Comment(models.Model): content = models.TextField() date_added = models.DateTimeField(auto_now_add=True) - added_by = models.ForeignKey(User, on_delete=models.CASCADE) + added_by = models.ForeignKey(User, on_delete=models.CASCADE) diff --git a/osinaweb/billing/__pycache__/urls.cpython-313.pyc b/osinaweb/billing/__pycache__/urls.cpython-313.pyc index 795ead5c..cc99b366 100644 Binary files a/osinaweb/billing/__pycache__/urls.cpython-313.pyc and b/osinaweb/billing/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/billing/__pycache__/views.cpython-313.pyc b/osinaweb/billing/__pycache__/views.cpython-313.pyc index df264483..c5cae714 100644 Binary files a/osinaweb/billing/__pycache__/views.cpython-313.pyc and b/osinaweb/billing/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/billing/add/__pycache__/urls.cpython-313.pyc b/osinaweb/billing/add/__pycache__/urls.cpython-313.pyc index d2ab8930..c30e4d66 100644 Binary files a/osinaweb/billing/add/__pycache__/urls.cpython-313.pyc and b/osinaweb/billing/add/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/billing/delete/__pycache__/urls.cpython-313.pyc b/osinaweb/billing/delete/__pycache__/urls.cpython-313.pyc index c0925059..631874c6 100644 Binary files a/osinaweb/billing/delete/__pycache__/urls.cpython-313.pyc and b/osinaweb/billing/delete/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/billing/delete/__pycache__/views.cpython-313.pyc b/osinaweb/billing/delete/__pycache__/views.cpython-313.pyc index 781abb28..21c6cf90 100644 Binary files a/osinaweb/billing/delete/__pycache__/views.cpython-313.pyc and b/osinaweb/billing/delete/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/billing/edit/__pycache__/urls.cpython-313.pyc b/osinaweb/billing/edit/__pycache__/urls.cpython-313.pyc index cf6da4c7..518a32b4 100644 Binary files a/osinaweb/billing/edit/__pycache__/urls.cpython-313.pyc and b/osinaweb/billing/edit/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/billing/edit/__pycache__/views.cpython-313.pyc b/osinaweb/billing/edit/__pycache__/views.cpython-313.pyc index 85cc984d..d33c4c14 100644 Binary files a/osinaweb/billing/edit/__pycache__/views.cpython-313.pyc and b/osinaweb/billing/edit/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0001_initial.cpython-313.pyc index 1f955ce1..857b2f31 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0002_service_active_service_cancelled_at_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0002_service_active_service_cancelled_at_and_more.cpython-313.pyc index f098854b..f3a01722 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0002_service_active_service_cancelled_at_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0002_service_active_service_cancelled_at_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0003_payment_servicepayment.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0003_payment_servicepayment.cpython-313.pyc index 6819b671..d3698542 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0003_payment_servicepayment.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0003_payment_servicepayment.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0004_rename_payment_paymenttype.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0004_rename_payment_paymenttype.cpython-313.pyc index bcb8c4ae..f1246fcf 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0004_rename_payment_paymenttype.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0004_rename_payment_paymenttype.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0005_service_recurring_cycle.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0005_service_recurring_cycle.cpython-313.pyc index ccf6ca54..51f0aec8 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0005_service_recurring_cycle.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0005_service_recurring_cycle.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0006_alter_service_cancelled_at_alter_service_created_at_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0006_alter_service_cancelled_at_alter_service_created_at_and_more.cpython-313.pyc index 2ce258cf..20271c9e 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0006_alter_service_cancelled_at_alter_service_created_at_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0006_alter_service_cancelled_at_alter_service_created_at_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0007_alter_service_recurring_cycle.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0007_alter_service_recurring_cycle.cpython-313.pyc index 1888c1f0..7bee3dc0 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0007_alter_service_recurring_cycle.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0007_alter_service_recurring_cycle.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0008_alter_service_type.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0008_alter_service_type.cpython-313.pyc index c92623ac..4c4611d6 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0008_alter_service_type.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0008_alter_service_type.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0009_remove_service_due_at_remove_servicepayment_service_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0009_remove_service_due_at_remove_servicepayment_service_and_more.cpython-313.pyc index 1f275166..4976ee71 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0009_remove_service_due_at_remove_servicepayment_service_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0009_remove_service_due_at_remove_servicepayment_service_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0010_charge_amount.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0010_charge_amount.cpython-313.pyc index b966285e..472e7244 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0010_charge_amount.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0010_charge_amount.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0011_invoice.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0011_invoice.cpython-313.pyc index f966153a..af870bd1 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0011_invoice.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0011_invoice.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0012_remove_servicepayment_charge_receipt_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0012_remove_servicepayment_charge_receipt_and_more.cpython-313.pyc index eaef981b..72611d05 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0012_remove_servicepayment_charge_receipt_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0012_remove_servicepayment_charge_receipt_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0013_alter_invoice_date_created.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0013_alter_invoice_date_created.cpython-313.pyc index 895dec79..0af3662f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0013_alter_invoice_date_created.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0013_alter_invoice_date_created.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0014_servicepayment_comment.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0014_servicepayment_comment.cpython-313.pyc index 51b9db45..6c8a61d4 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0014_servicepayment_comment.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0014_servicepayment_comment.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0015_order.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0015_order.cpython-313.pyc index 0711f69d..afd27890 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0015_order.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0015_order.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0016_alter_order_status.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0016_alter_order_status.cpython-313.pyc index fb0b9f60..7643f0cf 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0016_alter_order_status.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0016_alter_order_status.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0017_service_order.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0017_service_order.cpython-313.pyc index 1839c0ea..ef249ef1 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0017_service_order.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0017_service_order.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0018_alter_order_status.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0018_alter_order_status.cpython-313.pyc index bfc4ac60..3f8d96b2 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0018_alter_order_status.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0018_alter_order_status.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0019_item_orderpayment_remove_service_customer_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0019_item_orderpayment_remove_service_customer_and_more.cpython-313.pyc index f5761ec3..f3eb7015 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0019_item_orderpayment_remove_service_customer_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0019_item_orderpayment_remove_service_customer_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0020_orderitem.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0020_orderitem.cpython-313.pyc index 577b6240..35ba5f1b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0020_orderitem.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0020_orderitem.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0021_remove_item_recurring_cycle_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0021_remove_item_recurring_cycle_and_more.cpython-313.pyc index 2cb41f23..35d4e337 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0021_remove_item_recurring_cycle_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0021_remove_item_recurring_cycle_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0022_remove_item_cancelled_at_remove_item_created_at_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0022_remove_item_cancelled_at_remove_item_created_at_and_more.cpython-313.pyc index d32ab2f2..afb63c5b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0022_remove_item_cancelled_at_remove_item_created_at_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0022_remove_item_cancelled_at_remove_item_created_at_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0023_alter_item_project_alter_item_type.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0023_alter_item_project_alter_item_type.cpython-313.pyc index d450ee55..f71a7432 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0023_alter_item_project_alter_item_type.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0023_alter_item_project_alter_item_type.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-313.pyc index dcef8b8c..9eeb582f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0024_remove_item_active.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0025_remove_item_project_item_customer.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0025_remove_item_project_item_customer.cpython-313.pyc index 8602e3d9..1184eb2b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0025_remove_item_project_item_customer.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0025_remove_item_project_item_customer.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0026_rename_type_item_item_type_remove_order_paid.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0026_rename_type_item_item_type_remove_order_paid.cpython-313.pyc index 5e087379..fc62ab61 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0026_rename_type_item_item_type_remove_order_paid.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0026_rename_type_item_item_type_remove_order_paid.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0027_item_type.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0027_item_type.cpython-313.pyc index 4209c3b4..a2dac70e 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0027_item_type.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0027_item_type.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0028_remove_order_due_date.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0028_remove_order_due_date.cpython-313.pyc index ea662859..7b720044 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0028_remove_order_due_date.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0028_remove_order_due_date.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0029_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0029_invoice_pdf.cpython-313.pyc index 353574a2..f744e864 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0029_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0029_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0030_alter_invoice_order.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0030_alter_invoice_order.cpython-313.pyc index f8a3f259..ac4a828a 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0030_alter_invoice_order.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0030_alter_invoice_order.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0031_alter_invoice_invoice_number.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0031_alter_invoice_invoice_number.cpython-313.pyc index 7e406032..7947c686 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0031_alter_invoice_invoice_number.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0031_alter_invoice_invoice_number.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0032_order_business.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0032_order_business.cpython-313.pyc index c8efce33..218d5624 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0032_order_business.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0032_order_business.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0033_alter_order_status.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0033_alter_order_status.cpython-313.pyc index 05fbfc9d..3da45c31 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0033_alter_order_status.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0033_alter_order_status.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0034_alter_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0034_alter_invoice_pdf.cpython-313.pyc index 8f5222f9..d52e954f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0034_alter_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0034_alter_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0035_alter_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0035_alter_invoice_pdf.cpython-313.pyc index 9e80b51c..8faff57f 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0035_alter_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0035_alter_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0036_alter_invoice_invoice_number.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0036_alter_invoice_invoice_number.cpython-313.pyc index 6e1bb558..a362e72d 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0036_alter_invoice_invoice_number.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0036_alter_invoice_invoice_number.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0037_recurringcycle_item.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0037_recurringcycle_item.cpython-313.pyc index b4f701bc..6c14e591 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0037_recurringcycle_item.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0037_recurringcycle_item.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0038_alter_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0038_alter_invoice_pdf.cpython-313.pyc index 87a83cea..36837604 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0038_alter_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0038_alter_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0039_recurringcycle_cycle_price.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0039_recurringcycle_cycle_price.cpython-313.pyc index acaa4c5e..9bc4daab 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0039_recurringcycle_cycle_price.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0039_recurringcycle_cycle_price.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0040_rename_due_at_orderitem_end_at_and_more.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0040_rename_due_at_orderitem_end_at_and_more.cpython-313.pyc index 8fa046b0..8e252512 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0040_rename_due_at_orderitem_end_at_and_more.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0040_rename_due_at_orderitem_end_at_and_more.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0041_orderitem_active.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0041_orderitem_active.cpython-313.pyc index 39fb7711..a271fcbf 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0041_orderitem_active.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0041_orderitem_active.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0042_order_due_date.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0042_order_due_date.cpython-313.pyc index 5a09b556..51a65f8c 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0042_order_due_date.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0042_order_due_date.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0043_alter_invoice_pdf.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0043_alter_invoice_pdf.cpython-313.pyc index c82573ea..b0bcb035 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0043_alter_invoice_pdf.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0043_alter_invoice_pdf.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0044_alter_orderitem_active.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0044_alter_orderitem_active.cpython-313.pyc index 5ed368a6..7fde5e17 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0044_alter_orderitem_active.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0044_alter_orderitem_active.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0045_orderpayment_date_due_alter_orderpayment_date_paid.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0045_orderpayment_date_due_alter_orderpayment_date_paid.cpython-313.pyc index 4d75ffe9..b2720901 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0045_orderpayment_date_due_alter_orderpayment_date_paid.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0045_orderpayment_date_due_alter_orderpayment_date_paid.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0046_remove_orderpayment_order_orderpayment_order.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0046_remove_orderpayment_order_orderpayment_order.cpython-313.pyc index 423737fa..f96a81ad 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0046_remove_orderpayment_order_orderpayment_order.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0046_remove_orderpayment_order_orderpayment_order.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0047_paymenttype_description_paymenttype_image.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0047_paymenttype_description_paymenttype_image.cpython-313.pyc index 42203bae..0262b6df 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0047_paymenttype_description_paymenttype_image.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0047_paymenttype_description_paymenttype_image.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0048_remove_order_status_orderstatus.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0048_remove_order_status_orderstatus.cpython-313.pyc index 4127a809..80724b9b 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0048_remove_order_status_orderstatus.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0048_remove_order_status_orderstatus.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0049_rename_due_date_order_date.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0049_rename_due_date_order_date.cpython-313.pyc index f433a28b..ea6f6467 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0049_rename_due_date_order_date.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0049_rename_due_date_order_date.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0050_remove_orderpayment_type_orderpayment_type.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0050_remove_orderpayment_type_orderpayment_type.cpython-313.pyc index aed81c86..cae17bb2 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0050_remove_orderpayment_type_orderpayment_type.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0050_remove_orderpayment_type_orderpayment_type.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0051_alter_orderpayment_amount.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0051_alter_orderpayment_amount.cpython-313.pyc index 9fbbfbd4..d557e4f5 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0051_alter_orderpayment_amount.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0051_alter_orderpayment_amount.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0052_alter_orderstatus_status.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0052_alter_orderstatus_status.cpython-313.pyc index 6cdf659a..84737e8e 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0052_alter_orderstatus_status.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0052_alter_orderstatus_status.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/0053_item_photo.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/0053_item_photo.cpython-313.pyc index a92fe911..a6c8af82 100644 Binary files a/osinaweb/billing/migrations/__pycache__/0053_item_photo.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/0053_item_photo.cpython-313.pyc differ diff --git a/osinaweb/billing/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/billing/migrations/__pycache__/__init__.cpython-313.pyc index d78c388b..2eb8c380 100644 Binary files a/osinaweb/billing/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/billing/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/customercore/__pycache__/custom_context.cpython-313.pyc b/osinaweb/customercore/__pycache__/custom_context.cpython-313.pyc index ffd15595..94e38435 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/add/__pycache__/urls.cpython-313.pyc b/osinaweb/customercore/add/__pycache__/urls.cpython-313.pyc index 1e34b239..26a9b8f8 100644 Binary files a/osinaweb/customercore/add/__pycache__/urls.cpython-313.pyc and b/osinaweb/customercore/add/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/customercore/add/__pycache__/views.cpython-313.pyc b/osinaweb/customercore/add/__pycache__/views.cpython-313.pyc index f036fdba..70a7800e 100644 Binary files a/osinaweb/customercore/add/__pycache__/views.cpython-313.pyc and b/osinaweb/customercore/add/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0001_initial.cpython-313.pyc index 4b447b82..c2461147 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0002_alter_ticket_department.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0002_alter_ticket_department.cpython-313.pyc index e1be4a9b..3efa9b61 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0002_alter_ticket_department.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0002_alter_ticket_department.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0003_ticket_customer_ticket_status_and_more.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0003_ticket_customer_ticket_status_and_more.cpython-313.pyc index 2b5111ac..a46fc57d 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0003_ticket_customer_ticket_status_and_more.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0003_ticket_customer_ticket_status_and_more.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0004_ticket_ticket_number_and_more.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0004_ticket_ticket_number_and_more.cpython-313.pyc index 3fac679e..96916d8c 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0004_ticket_ticket_number_and_more.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0004_ticket_ticket_number_and_more.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0005_ticketstatusupdate.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0005_ticketstatusupdate.cpython-313.pyc index 1044bb8d..74dcac5a 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0005_ticketstatusupdate.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0005_ticketstatusupdate.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0006_ticketupdate_read.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0006_ticketupdate_read.cpython-313.pyc index 09dafdfc..c039a814 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0006_ticketupdate_read.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0006_ticketupdate_read.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0007_remove_ticketupdate_read_ticketupdatereadstatus.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0007_remove_ticketupdate_read_ticketupdatereadstatus.cpython-313.pyc index ab5dd17a..bc717e82 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0007_remove_ticketupdate_read_ticketupdatereadstatus.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0007_remove_ticketupdate_read_ticketupdatereadstatus.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0008_rename_ticketupdatereadstatus_ticketread.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0008_rename_ticketupdatereadstatus_ticketread.cpython-313.pyc index a9723fa6..24c4f37c 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0008_rename_ticketupdatereadstatus_ticketread.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0008_rename_ticketupdatereadstatus_ticketread.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0009_alter_ticketattachment_ticket.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0009_alter_ticketattachment_ticket.cpython-313.pyc index a04e0fd2..3ad0e581 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0009_alter_ticketattachment_ticket.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0009_alter_ticketattachment_ticket.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0010_rename_ticketreaction_ticketupdatereaction.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0010_rename_ticketreaction_ticketupdatereaction.cpython-313.pyc index a25c3187..f4e2e6fc 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0010_rename_ticketreaction_ticketupdatereaction.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0010_rename_ticketreaction_ticketupdatereaction.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0011_ticketupdatereaction_customer.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0011_ticketupdatereaction_customer.cpython-313.pyc index b11a36a1..8886595c 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0011_ticketupdatereaction_customer.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0011_ticketupdatereaction_customer.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0012_ticket_ticket_members.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0012_ticket_ticket_members.cpython-313.pyc index 59bb45bd..01cb62e2 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0012_ticket_ticket_members.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0012_ticket_ticket_members.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0013_alter_ticket_ticket_members.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0013_alter_ticket_ticket_members.cpython-313.pyc index 8ba3f049..c74c1f7a 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0013_alter_ticket_ticket_members.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0013_alter_ticket_ticket_members.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0014_remove_ticket_department_ticket_department.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0014_remove_ticket_department_ticket_department.cpython-313.pyc index 8a72b9e6..67a49c27 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0014_remove_ticket_department_ticket_department.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0014_remove_ticket_department_ticket_department.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0015_rename_department_ticket_departments.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0015_rename_department_ticket_departments.cpython-313.pyc index 7dd0f315..8d6d2ed7 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0015_rename_department_ticket_departments.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0015_rename_department_ticket_departments.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0016_rename_ticketstatusupdate_ticketstatus.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0016_rename_ticketstatusupdate_ticketstatus.cpython-313.pyc index c26a983f..a6f457f1 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0016_rename_ticketstatusupdate_ticketstatus.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0016_rename_ticketstatusupdate_ticketstatus.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0017_tickettask.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0017_tickettask.cpython-313.pyc index 16a205e5..cf842165 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0017_tickettask.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0017_tickettask.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0018_alter_ticketattachment_file.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0018_alter_ticketattachment_file.cpython-313.pyc index ebf24697..b4cde121 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0018_alter_ticketattachment_file.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0018_alter_ticketattachment_file.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0019_file.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0019_file.cpython-313.pyc index 25da6c4f..298dab14 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0019_file.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0019_file.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0020_alter_ticketattachment_file.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0020_alter_ticketattachment_file.cpython-313.pyc index 1191a40a..f939f8b0 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0020_alter_ticketattachment_file.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0020_alter_ticketattachment_file.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0021_file_ticket.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0021_file_ticket.cpython-313.pyc index be93ee36..c68546fa 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0021_file_ticket.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0021_file_ticket.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0022_remove_file_ticket.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0022_remove_file_ticket.cpython-313.pyc index edc9678a..b9f3e045 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0022_remove_file_ticket.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0022_remove_file_ticket.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0023_delete_file_remove_ticketattachment_file_and_more.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0023_delete_file_remove_ticketattachment_file_and_more.cpython-313.pyc index 94d64abb..5dc4ff2d 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0023_delete_file_remove_ticketattachment_file_and_more.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0023_delete_file_remove_ticketattachment_file_and_more.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/0024_remove_ticketattachment_ticket_and_more.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/0024_remove_ticketattachment_ticket_and_more.cpython-313.pyc index 88116c1c..00dae72b 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/0024_remove_ticketattachment_ticket_and_more.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/0024_remove_ticketattachment_ticket_and_more.cpython-313.pyc differ diff --git a/osinaweb/customercore/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/customercore/migrations/__pycache__/__init__.cpython-313.pyc index dcd10640..136b426b 100644 Binary files a/osinaweb/customercore/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/customercore/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/customercore/payment/__pycache__/urls.cpython-313.pyc b/osinaweb/customercore/payment/__pycache__/urls.cpython-313.pyc index 3d1b9281..b7364470 100644 Binary files a/osinaweb/customercore/payment/__pycache__/urls.cpython-313.pyc and b/osinaweb/customercore/payment/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/customercore/payment/__pycache__/views.cpython-313.pyc b/osinaweb/customercore/payment/__pycache__/views.cpython-313.pyc index 8badc2c8..15e7eec2 100644 Binary files a/osinaweb/customercore/payment/__pycache__/views.cpython-313.pyc and b/osinaweb/customercore/payment/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/db.sqlite3 b/osinaweb/db.sqlite3 index 3fb06776..5e66e607 100644 Binary files a/osinaweb/db.sqlite3 and b/osinaweb/db.sqlite3 differ diff --git a/osinaweb/osichat/__pycache__/consumers.cpython-313.pyc b/osinaweb/osichat/__pycache__/consumers.cpython-313.pyc index 814cd917..cac07b35 100644 Binary files a/osinaweb/osichat/__pycache__/consumers.cpython-313.pyc and b/osinaweb/osichat/__pycache__/consumers.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/routing.cpython-313.pyc b/osinaweb/osichat/__pycache__/routing.cpython-313.pyc index c4037a2f..0594ceef 100644 Binary files a/osinaweb/osichat/__pycache__/routing.cpython-313.pyc and b/osinaweb/osichat/__pycache__/routing.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/urls.cpython-313.pyc b/osinaweb/osichat/__pycache__/urls.cpython-313.pyc index 570fda4b..96533a5c 100644 Binary files a/osinaweb/osichat/__pycache__/urls.cpython-313.pyc and b/osinaweb/osichat/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osichat/__pycache__/views.cpython-313.pyc b/osinaweb/osichat/__pycache__/views.cpython-313.pyc index 1b737e97..6f784c9d 100644 Binary files a/osinaweb/osichat/__pycache__/views.cpython-313.pyc and b/osinaweb/osichat/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osichat/api/__pycache__/serializers.cpython-313.pyc b/osinaweb/osichat/api/__pycache__/serializers.cpython-313.pyc index 8d2e73ba..06c70be7 100644 Binary files a/osinaweb/osichat/api/__pycache__/serializers.cpython-313.pyc and b/osinaweb/osichat/api/__pycache__/serializers.cpython-313.pyc differ diff --git a/osinaweb/osichat/api/__pycache__/urls.cpython-313.pyc b/osinaweb/osichat/api/__pycache__/urls.cpython-313.pyc index eb709617..00cd6b61 100644 Binary files a/osinaweb/osichat/api/__pycache__/urls.cpython-313.pyc and b/osinaweb/osichat/api/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osichat/api/__pycache__/views.cpython-313.pyc b/osinaweb/osichat/api/__pycache__/views.cpython-313.pyc index 97693dd7..faed619c 100644 Binary files a/osinaweb/osichat/api/__pycache__/views.cpython-313.pyc and b/osinaweb/osichat/api/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0001_initial.cpython-313.pyc index 144df02c..901467a9 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0002_chatroom_guest_session_alter_chatroom_created_by_and_more.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0002_chatroom_guest_session_alter_chatroom_created_by_and_more.cpython-313.pyc index 33375507..f0e2fc16 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0002_chatroom_guest_session_alter_chatroom_created_by_and_more.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0002_chatroom_guest_session_alter_chatroom_created_by_and_more.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0003_chatroomguest_remove_chatroom_guest_session.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0003_chatroomguest_remove_chatroom_guest_session.cpython-313.pyc index 1773f84c..1a050a6f 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0003_chatroomguest_remove_chatroom_guest_session.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0003_chatroomguest_remove_chatroom_guest_session.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0004_chatroomguest_room.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0004_chatroomguest_room.cpython-313.pyc index 096a9e7f..a7dc38e7 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0004_chatroomguest_room.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0004_chatroomguest_room.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0005_alter_chatmessage_member.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0005_alter_chatmessage_member.cpython-313.pyc index 370040ff..86e3e702 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0005_alter_chatmessage_member.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0005_alter_chatmessage_member.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0006_alter_chatmessage_content.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0006_alter_chatmessage_content.cpython-313.pyc index 739ea691..1549f92e 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0006_alter_chatmessage_content.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0006_alter_chatmessage_content.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0007_chatmessage_room.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0007_chatmessage_room.cpython-313.pyc index d116c354..0d0abc1a 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0007_chatmessage_room.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0007_chatmessage_room.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0008_alter_chatmessage_room.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0008_alter_chatmessage_room.cpython-313.pyc index 0a12c07a..c90a3300 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0008_alter_chatmessage_room.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0008_alter_chatmessage_room.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0009_visitor.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0009_visitor.cpython-313.pyc index d6ed9bdb..1df2ccd3 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0009_visitor.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0009_visitor.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0010_visitor_left_date_visitor_visit_date.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0010_visitor_left_date_visitor_visit_date.cpython-313.pyc index 7f8051b3..6d6e5416 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0010_visitor_left_date_visitor_visit_date.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0010_visitor_left_date_visitor_visit_date.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0011_visitor_country.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0011_visitor_country.cpython-313.pyc index efa901ea..5f7c885a 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0011_visitor_country.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0011_visitor_country.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0012_alter_visitor_reference.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0012_alter_visitor_reference.cpython-313.pyc index 8afb940c..7850b6f3 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0012_alter_visitor_reference.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0012_alter_visitor_reference.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0013_rename_reference_visitor_referrer.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0013_rename_reference_visitor_referrer.cpython-313.pyc index f8640c24..34494c4b 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0013_rename_reference_visitor_referrer.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0013_rename_reference_visitor_referrer.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0014_alter_chatmessageattachment_message.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0014_alter_chatmessageattachment_message.cpython-313.pyc index 786c0a01..9c8196a5 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0014_alter_chatmessageattachment_message.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0014_alter_chatmessageattachment_message.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0015_chatmessageseen_guest_alter_chatmessageseen_member.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0015_chatmessageseen_guest_alter_chatmessageseen_member.cpython-313.pyc index f227062c..52b05f56 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0015_chatmessageseen_guest_alter_chatmessageseen_member.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0015_chatmessageseen_guest_alter_chatmessageseen_member.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0016_chatmessageseen_seen_date.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0016_chatmessageseen_seen_date.cpython-313.pyc index d814ff24..bfc74f17 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0016_chatmessageseen_seen_date.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0016_chatmessageseen_seen_date.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0017_chatroom_date_terminated_chatroom_terminated_by.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0017_chatroom_date_terminated_chatroom_terminated_by.cpython-313.pyc index 0be9d50c..45b90507 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0017_chatroom_date_terminated_chatroom_terminated_by.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0017_chatroom_date_terminated_chatroom_terminated_by.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0018_visitorlog_remove_chatroomguest_mobile_number_and_more.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0018_visitorlog_remove_chatroomguest_mobile_number_and_more.cpython-313.pyc index 71692691..f1a0ece5 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0018_visitorlog_remove_chatroomguest_mobile_number_and_more.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0018_visitorlog_remove_chatroomguest_mobile_number_and_more.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0019_visitorlog_visitor.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0019_visitorlog_visitor.cpython-313.pyc index 6317e75e..f64addc0 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0019_visitorlog_visitor.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0019_visitorlog_visitor.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0020_chatroomreview.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0020_chatroomreview.cpython-313.pyc index b352caab..5082d6bd 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0020_chatroomreview.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0020_chatroomreview.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0021_chatroomreview_details.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0021_chatroomreview_details.cpython-313.pyc index e96c1e40..4290d580 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0021_chatroomreview_details.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0021_chatroomreview_details.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0022_visitorlog_title.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0022_visitorlog_title.cpython-313.pyc index 7b81831a..6e373efd 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0022_visitorlog_title.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0022_visitorlog_title.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0023_visitor_browser_name_visitor_os_name.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0023_visitor_browser_name_visitor_os_name.cpython-313.pyc index d51f3685..a01b26e9 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0023_visitor_browser_name_visitor_os_name.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0023_visitor_browser_name_visitor_os_name.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0024_chatotification.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0024_chatotification.cpython-313.pyc index b6707393..5e5e3609 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0024_chatotification.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0024_chatotification.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0025_rename_chatotification_chatnotification.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0025_rename_chatotification_chatnotification.cpython-313.pyc index cb31c9be..78983000 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0025_rename_chatotification_chatnotification.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0025_rename_chatotification_chatnotification.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0026_visitor_region.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0026_visitor_region.cpython-313.pyc index 1a02f354..93bb0f60 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0026_visitor_region.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0026_visitor_region.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0027_chatnotification_type.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0027_chatnotification_type.cpython-313.pyc index 87e5e8e1..d5bfb7ee 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0027_chatnotification_type.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0027_chatnotification_type.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0028_chatnotification_type_id.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0028_chatnotification_type_id.cpython-313.pyc index 3cf39bfc..c58ee7f7 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0028_chatnotification_type_id.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0028_chatnotification_type_id.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0029_chatnotification_session_id.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0029_chatnotification_session_id.cpython-313.pyc index 9e1a52be..f1bcd4a4 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0029_chatnotification_session_id.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0029_chatnotification_session_id.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0030_chatnotification_users.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0030_chatnotification_users.cpython-313.pyc index ddc83da3..877da1c6 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0030_chatnotification_users.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0030_chatnotification_users.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0031_alter_chatnotification_users.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0031_alter_chatnotification_users.cpython-313.pyc index 139534a6..dcfe56b9 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0031_alter_chatnotification_users.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0031_alter_chatnotification_users.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0032_remove_chatnotification_users_chatnotification_user.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0032_remove_chatnotification_users_chatnotification_user.cpython-313.pyc index 46e94203..e2627e60 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0032_remove_chatnotification_users_chatnotification_user.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0032_remove_chatnotification_users_chatnotification_user.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0033_chatconnection.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0033_chatconnection.cpython-313.pyc index 394229fa..9da1f385 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0033_chatconnection.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0033_chatconnection.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0034_chatroom_group_chatroom_visitor.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0034_chatroom_group_chatroom_visitor.cpython-313.pyc index 1435e017..be7b2f06 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0034_chatroom_group_chatroom_visitor.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0034_chatroom_group_chatroom_visitor.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/0035_remove_chatroom_group_remove_chatroom_visitor_and_more.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/0035_remove_chatroom_group_remove_chatroom_visitor_and_more.cpython-313.pyc index b59e2bb6..b09ca4e6 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/0035_remove_chatroom_group_remove_chatroom_visitor_and_more.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/0035_remove_chatroom_group_remove_chatroom_visitor_and_more.cpython-313.pyc differ diff --git a/osinaweb/osichat/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/osichat/migrations/__pycache__/__init__.cpython-313.pyc index 22c0df93..c808b45c 100644 Binary files a/osinaweb/osichat/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/osichat/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/consumers.cpython-313.pyc b/osinaweb/osinacore/__pycache__/consumers.cpython-313.pyc index 88a54d1a..59f8cb54 100644 Binary files a/osinaweb/osinacore/__pycache__/consumers.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/consumers.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 f4b3ff93..9ce71d5d 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__/routing.cpython-313.pyc b/osinaweb/osinacore/__pycache__/routing.cpython-313.pyc index cbcbb62f..f1dcd0c8 100644 Binary files a/osinaweb/osinacore/__pycache__/routing.cpython-313.pyc and b/osinaweb/osinacore/__pycache__/routing.cpython-313.pyc differ diff --git a/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/__pycache__/urls.cpython-313.pyc index a7ca243f..36def678 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 6b70592d..9375ab1b 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__/urls.cpython-313.pyc b/osinaweb/osinacore/add/__pycache__/urls.cpython-313.pyc index 0dc038d6..7b7cb5b0 100644 Binary files a/osinaweb/osinacore/add/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/add/__pycache__/urls.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 6c35f82a..a0d1dbee 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/add/urls.py b/osinaweb/osinacore/add/urls.py index 7dae3401..efc67431 100644 --- a/osinaweb/osinacore/add/urls.py +++ b/osinaweb/osinacore/add/urls.py @@ -8,6 +8,7 @@ urlpatterns = [ path('customer/', views.add_customer, name='addcustomer'), path('business/', views.add_business, name='addbusiness'), path('addressbook/', views.add_addressbook, name='addaddressbook'), + path('prospecting-list/', views.add_prospecting_list, name='addlist'), path('staff/', views.add_staff, name='adduser'), diff --git a/osinaweb/osinacore/add/views.py b/osinaweb/osinacore/add/views.py index f6f0f102..567ff130 100644 --- a/osinaweb/osinacore/add/views.py +++ b/osinaweb/osinacore/add/views.py @@ -1,6 +1,6 @@ from django.shortcuts import render, redirect, get_object_or_404 -from addressbook.models import AddressBook, Country, Group, Contact +from addressbook.models import AddressBook, Country, Group, Contact, ProspectingList, ProspectingListItem from osinacore.models import * from django.contrib.auth.decorators import login_required from django.http import HttpResponse @@ -933,3 +933,24 @@ def add_addressbook(request): "groups": groups, } return render(request, 'add_templates/add-addressbook.html', context) + + +def add_prospecting_list(request): + addresses = AddressBook.objects.all().order_by('first_name') + + if request.method == 'POST': + name = request.POST.get('name') + description = request.POST.get('description') + + prospecting_list = ProspectingList.objects.create( + name=name, + description=description, + added_by=request.user + ) + + return redirect('prospecting-lists') # Or another relevant view + + context = { + "addresses": addresses, + } + return render(request, 'add_templates/add-prospecting-list.html', context) \ No newline at end of file diff --git a/osinaweb/osinacore/edit/__pycache__/urls.cpython-313.pyc b/osinaweb/osinacore/edit/__pycache__/urls.cpython-313.pyc index 7de99aa4..266a1bea 100644 Binary files a/osinaweb/osinacore/edit/__pycache__/urls.cpython-313.pyc and b/osinaweb/osinacore/edit/__pycache__/urls.cpython-313.pyc differ diff --git a/osinaweb/osinacore/edit/__pycache__/views.cpython-313.pyc b/osinaweb/osinacore/edit/__pycache__/views.cpython-313.pyc index 77184bf5..5e1b8420 100644 Binary files a/osinaweb/osinacore/edit/__pycache__/views.cpython-313.pyc and b/osinaweb/osinacore/edit/__pycache__/views.cpython-313.pyc differ diff --git a/osinaweb/osinacore/edit/urls.py b/osinaweb/osinacore/edit/urls.py index ff966fd5..0fce5a2f 100644 --- a/osinaweb/osinacore/edit/urls.py +++ b/osinaweb/osinacore/edit/urls.py @@ -24,6 +24,7 @@ urlpatterns = [ path('ticket//status/', views.edit_ticket_status_modal, name='edit-ticket-status-modal'), path('addressbook//', views.edit_addressbook, name='editaddressbook'), + path('prospecting-list//', views.edit_prospecting_list, name='editprospecting-list'), #Mark Points path('mark_point_working_on///', views.mark_point_working_on, name='mark_point_working_on'), diff --git a/osinaweb/osinacore/edit/views.py b/osinaweb/osinacore/edit/views.py index 51e0179b..21993dd8 100644 --- a/osinaweb/osinacore/edit/views.py +++ b/osinaweb/osinacore/edit/views.py @@ -1,7 +1,7 @@ -from addressbook.models import AddressBook, Country, Contact, Group +from addressbook.models import AddressBook, Country, Contact, Group, ProspectingList, ProspectingListItem from osinacore.models import * from django.shortcuts import render, redirect, get_object_or_404 -from django.http import HttpResponseRedirect +from django.http import HttpResponseRedirect from django.urls import reverse from django.http import HttpResponse from osinacore.decorators import * @@ -12,12 +12,12 @@ from support.models import * def edit_customer(request, customer_id): customer = get_object_or_404(CustomerProfile, customer_id=customer_id) - #Utilities + #Utilities references = Reference.objects.all() if request.method == 'POST': - + customer.user.first_name = request.POST.get('first_name') customer.user.last_name = request.POST.get('last_name') customer.user.email = request.POST.get('email') @@ -31,11 +31,11 @@ def edit_customer(request, customer_id): reference = get_object_or_404(Reference, id=customer_reference) customer.reference = reference customer.save() - - return redirect('customerdetails', customer_id=customer.customer_id) - + return redirect('customerdetails', customer_id=customer.customer_id) + + context = { 'customer' : customer, @@ -57,7 +57,7 @@ def edit_customer_status_modal(request, customer_id): } - return render(request, 'edit_templates/edit-customer-status-modal.html', context) + return render(request, 'edit_templates/edit-customer-status-modal.html', context) @@ -68,7 +68,7 @@ def edit_business(request, business_id): customers = CustomerProfile.objects.all().order_by('-id') if request.method == 'POST': - + business.name= request.POST.get('name') business.financial_number = request.POST.get('financial_number') business.commercial_registration = request.POST.get('commercial_registration') @@ -87,15 +87,15 @@ def edit_business(request, business_id): business.type = None new_logo = request.FILES.get('logo') - if new_logo: + if new_logo: business.logo = new_logo business.save() - - return redirect('businessdetails', business_id=business.business_id) - + + return redirect('businessdetails', business_id=business.business_id) + context = { 'business' : business, 'business_types' : business_types, @@ -108,12 +108,12 @@ def edit_business(request, business_id): @staff_login_required def edit_staff(request, staff_id): staff = get_object_or_404(StaffProfile, staff_id=staff_id) - + if request.method == 'POST': staff.user.first_name = request.POST.get('first_name') staff.user.last_name = request.POST.get('last_name') staff.user.email = request.POST.get('email') - + active = True if request.POST.get('active') else False staff.user.is_active = active staff.user.save() @@ -129,14 +129,14 @@ def edit_staff(request, staff_id): staff.intern = intern staff.save() - + return redirect('userdetails', staff_id=staff.staff_id) - + context = { 'staff': staff, } - + return render(request, 'edit_templates/edit-staff.html', context) @@ -149,7 +149,7 @@ def edit_project(request, project_id): staffs = StaffProfile.objects.all().order_by('-id') current_manager = project.manager customers = CustomerProfile.objects.all().order_by('-id') - current_client = project.customer + current_client = project.customer types = ProjectType.objects.all().order_by('-id') @@ -180,10 +180,10 @@ def edit_project(request, project_id): project.start_date = request.POST.get('start_date') project.end_date = request.POST.get('end_date') - + project.save() - return redirect('detailed-project', project_id=project.project_id) - + return redirect('detailed-project', project_id=project.project_id) + context = { @@ -219,7 +219,7 @@ def edit_project_status_modal(request, project_id): } - return render(request, 'edit_templates/edit-project-status-modal.html', context) + return render(request, 'edit_templates/edit-project-status-modal.html', context) @@ -266,7 +266,7 @@ def edit_task(request, task_id): if request.method == 'POST': task.name = request.POST.get('name') - + project_id = request.POST.get('project') project = get_object_or_404(Project, id=project_id) task.project = project @@ -278,7 +278,7 @@ def edit_task(request, task_id): epic_id = request.POST.get('epic') epic = get_object_or_404(Epic, id=epic_id) task.epic = epic - + task.userstory = request.POST.get('requirement') task.status = request.POST.get('status') @@ -286,7 +286,7 @@ def edit_task(request, task_id): assigned_to_id = request.POST.get('assigned_to') assigned_to = get_object_or_404(StaffProfile, id=assigned_to_id) task.assigned_to = assigned_to - + task.description = request.POST.get('description') task.start_date = request.POST.get('start_date') task.end_date = request.POST.get('end_date') @@ -307,12 +307,12 @@ def edit_task(request, task_id): @staff_login_required def edit_task_status_modal(request, *, task_id): task = get_object_or_404(Task, task_id=task_id) - + if request.method == 'POST': status = request.POST.get('status') task.status = status task.save() - + # Reload the parent page using JavaScript response = HttpResponse('') return response @@ -320,26 +320,26 @@ def edit_task_status_modal(request, *, task_id): context = { 'task' : task, } - + return render(request, 'edit_templates/edit-taskstatus-modal.html', context) @staff_login_required def edit_epic(request, *args, **kwargs): - + context = { } return render(request, 'edit_templates/edit-epic.html', context) - + @staff_login_required def edit_department(request, department_id): department = get_object_or_404(Department, id=department_id) - + if request.method == 'POST': department.name = request.POST.get('name') department.save() @@ -354,7 +354,7 @@ def edit_project_type(request, projecttype_id): projecttype = get_object_or_404(ProjectType, id=projecttype_id) departments = Department.objects.all().order_by('name') - + if request.method == 'POST': projecttype.name = request.POST.get('name') projecttype.department = get_object_or_404(Department, id=request.POST.get('department')) @@ -369,7 +369,7 @@ def edit_project_type(request, projecttype_id): def edit_job_position(request, jobposition_id): jobposition = get_object_or_404(JobPosition, id=jobposition_id) departments = Department.objects.all().order_by('name') - + if request.method == 'POST': jobposition.name = request.POST.get('name') jobposition.department = get_object_or_404(Department, id=request.POST.get('department')) @@ -387,7 +387,7 @@ def edit_job_position(request, jobposition_id): def edit_business_type(request, businesstype_id): businesstype = get_object_or_404(BusinessType, id=businesstype_id) - + if request.method == 'POST': businesstype.name = request.POST.get('name') businesstype.save() @@ -400,7 +400,7 @@ def edit_business_type(request, businesstype_id): @staff_login_required def edit_reference(request, reference_id): reference = get_object_or_404(Reference, id=reference_id) - + if request.method == 'POST': reference.name = request.POST.get('name') reference.date = request.POST.get('date') @@ -415,7 +415,7 @@ def edit_reference(request, reference_id): @staff_login_required def edit_tag(request, tag_id): tag = get_object_or_404(Tag, id=tag_id) - + if request.method == 'POST': tag.name = request.POST.get('name') tag.save() @@ -436,7 +436,7 @@ def edit_ticket_status_modal(request, ticket_id): added_by = request.user ) ticket_status.save() - return redirect('ticketroom', ticket_number=ticket.ticket_number) + return redirect('ticketroom', ticket_number=ticket.ticket_number) context = { 'ticket': ticket, } @@ -461,15 +461,15 @@ def mark_point_working_on(request, point_id, task_id): if task.status != 'Working On': task.status = 'Working On' - task.status_date = timezone.now() + task.status_date = timezone.now() task.save() - + if PointActivity.objects.filter(point=point).count() == 1: status_text = f'Started Working On: {point.text}' status = Status(text=status_text, date_time=timezone.now(), staff=request.user.staffprofile, type='Task', type_id=point.task.id) status.save() - else: + else: status_text = f'Resumed Working On: {point.text}' status = Status(text=status_text, date_time=timezone.now(), staff=request.user.staffprofile, type='Task', type_id=point.task.id) status.save() @@ -496,22 +496,22 @@ def mark_point_working_on_task_page(request, point_id, task_id): start_time = timezone.now(), ) activity.save() - + if task.status != 'Working On': task.status = 'Working On' - task.status_date = timezone.now() + task.status_date = timezone.now() task.save() if PointActivity.objects.filter(point=point).count() == 1: status_text = f'Started Working On: {point.text}' status = Status(text=status_text, date_time=timezone.now(), staff=request.user.staffprofile, type='Task', type_id=point.task.id) status.save() - else: + else: status_text = f'Resumed Working On: {point.text}' status = Status(text=status_text, date_time=timezone.now(), staff=request.user.staffprofile, type='Task', type_id=point.task.id) status.save() - + return redirect('detailed-task', task_id=task.task_id) @@ -530,7 +530,7 @@ def mark_point_paused(request, point_id, task_id): if last_activity: last_activity.end_time = current_datetime last_activity.save() - + if not Point.objects.filter(task=task, status='Working On').exists(): task.status = 'Open' task.status_date = timezone.now() @@ -566,7 +566,7 @@ def mark_point_paused_task_page(request, point_id, task_id): task.status = 'Open' task.status_date = timezone.now() task.save() - + status_text = f'{point.text} - Paused' status = Status(text=status_text, date_time=timezone.now(), staff=request.user.staffprofile, type='Task', type_id=point.task.id) status.save() @@ -598,7 +598,7 @@ def mark_point_completed(request, point_id, task_id): total_time_hours, total_time_minutes, total_time_seconds = point.total_activity_time() - + formatted_time = "" if total_time_hours > 0: formatted_time += f"{total_time_hours}{'hr' if total_time_hours == 1 else 'hrs'}" @@ -613,7 +613,7 @@ def mark_point_completed(request, point_id, task_id): status = Status(text=status_text, date_time=timezone.now(), staff=request.user.staffprofile, type='Task', type_id=point.task.id) status.save() - + task_id_str = task.task_id showpoints_url = reverse('showpoints', args=[task_id_str]) @@ -644,7 +644,7 @@ def mark_point_completed_task_page(request, point_id, task_id): task.save() total_time_hours, total_time_minutes, total_time_seconds = point.total_activity_time() - + formatted_time = "" if total_time_hours > 0: formatted_time += f"{total_time_hours}{'hr' if total_time_hours == 1 else 'hrs'}" @@ -697,3 +697,61 @@ def edit_addressbook(request, addressbook_id): "groups": groups, }) +@staff_login_required +def edit_prospecting_list(request, list_id): + prospecting_list = get_object_or_404(ProspectingList, id=list_id) + addresses = AddressBook.objects.all().order_by('first_name') + list_items = prospecting_list.prospectinglistitem_set.all() + + if request.method == 'POST': + prospecting_list.name = request.POST.get('name') + prospecting_list.description = request.POST.get('description') + prospecting_list.save() + # --- Update existing items --- + existing_ids = request.POST.getlist('list_item_id[]') + for id in existing_ids: + try: + item = ProspectingListItem.objects.get(id=id, prospecting_list=prospecting_list) + # Checkbox will only be present in POST if checked. + item.attention = True if request.POST.get(f'attention_existing_{id}') == 'on' else False + item.save() + except ProspectingListItem.DoesNotExist: + pass + + # --- Add new inline item if provided --- + new_addressbook = request.POST.get('new_addressbook') + # Only process if user selected a value (it may be empty if no new item is desired) + if new_addressbook: + if new_addressbook == 'new': + # Create new AddressBook entry from inline form fields. + new_first_name = request.POST.get('new_first_name') + new_last_name = request.POST.get('new_last_name') + if new_first_name and new_last_name: + addressbook = AddressBook.objects.create( + first_name=new_first_name, + last_name=new_last_name + ) + else: + addressbook = None # Or handle errors as needed. + else: + try: + addressbook = AddressBook.objects.get(id=new_addressbook) + except AddressBook.DoesNotExist: + addressbook = None + + if addressbook: + new_attention = True if request.POST.get('new_attention') == 'on' else False + ProspectingListItem.objects.create( + prospecting_list=prospecting_list, + addressbook=addressbook, + attention=new_attention + ) + + return redirect('editprospecting-list', list_id=prospecting_list.id) + + context = { + "list": prospecting_list, + "addresses": addresses, + "list_items": list_items, + } + return render(request, 'edit_templates/edit-prospecting-list.html', context) diff --git a/osinaweb/osinacore/migrations/__pycache__/0001_initial.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0001_initial.cpython-313.pyc index 4b30e9f8..57d99ccb 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0001_initial.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0001_initial.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0002_projecttype_alter_business_options_staffprofile_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0002_projecttype_alter_business_options_staffprofile_and_more.cpython-313.pyc index 5e69718f..d5e6e918 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0002_projecttype_alter_business_options_staffprofile_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0002_projecttype_alter_business_options_staffprofile_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0003_milestone.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0003_milestone.cpython-313.pyc index 11ae8747..fb2b7f78 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0003_milestone.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0003_milestone.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0004_epic.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0004_epic.cpython-313.pyc index b5d51d6b..fa1c2ee0 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0004_epic.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0004_epic.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0005_staffprofile_image.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0005_staffprofile_image.cpython-313.pyc index d2d166c6..ad695640 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0005_staffprofile_image.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0005_staffprofile_image.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0006_note.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0006_note.cpython-313.pyc index 083f85b6..da46a4ae 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0006_note.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0006_note.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0007_project_project_id_alter_project_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0007_project_project_id_alter_project_status.cpython-313.pyc index bcff0407..52780eeb 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0007_project_project_id_alter_project_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0007_project_project_id_alter_project_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0008_alter_project_project_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0008_alter_project_project_id.cpython-313.pyc index a3c536ae..ac329299 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0008_alter_project_project_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0008_alter_project_project_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0009_alter_project_project_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0009_alter_project_project_id.cpython-313.pyc index 207d1b83..6bfc571e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0009_alter_project_project_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0009_alter_project_project_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0010_remove_note_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0010_remove_note_date.cpython-313.pyc index b617f952..ec307210 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0010_remove_note_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0010_remove_note_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0011_note_date_alter_note_color_alter_note_text_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0011_note_date_alter_note_color_alter_note_text_and_more.cpython-313.pyc index 7a62216a..bfb2a517 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0011_note_date_alter_note_color_alter_note_text_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0011_note_date_alter_note_color_alter_note_text_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0012_projectrequirement.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0012_projectrequirement.cpython-313.pyc index b2e844c6..33c01ba7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0012_projectrequirement.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0012_projectrequirement.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0013_projectfile.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0013_projectfile.cpython-313.pyc index e532764f..ce65da22 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0013_projectfile.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0013_projectfile.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0014_alter_projectfile_file.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0014_alter_projectfile_file.cpython-313.pyc index a0d2dde4..8f6db365 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0014_alter_projectfile_file.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0014_alter_projectfile_file.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0015_projectcredentials.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0015_projectcredentials.cpython-313.pyc index 97b261bb..30a276a7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0015_projectcredentials.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0015_projectcredentials.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0016_rename_projectcredentials_projectcredential.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0016_rename_projectcredentials_projectcredential.cpython-313.pyc index 1a29f3ea..72bf342b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0016_rename_projectcredentials_projectcredential.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0016_rename_projectcredentials_projectcredential.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0017_alter_project_end_date_alter_project_start_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0017_alter_project_end_date_alter_project_start_date.cpython-313.pyc index 1322dc7d..46b8a0ad 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0017_alter_project_end_date_alter_project_start_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0017_alter_project_end_date_alter_project_start_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0018_epic_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0018_epic_status.cpython-313.pyc index e913214c..3966f812 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0018_epic_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0018_epic_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0019_alter_epic_end_date_alter_epic_start_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0019_alter_epic_end_date_alter_epic_start_date.cpython-313.pyc index ca0c2448..940d82e9 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0019_alter_epic_end_date_alter_epic_start_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0019_alter_epic_end_date_alter_epic_start_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0020_task.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0020_task.cpython-313.pyc index 0fafe709..c376d1f1 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0020_task.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0020_task.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0021_alter_customerprofile_business_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0021_alter_customerprofile_business_and_more.cpython-313.pyc index 3b46cac4..1bea5a4d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0021_alter_customerprofile_business_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0021_alter_customerprofile_business_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0022_customerprofile_customer_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0022_customerprofile_customer_id.cpython-313.pyc index c0266bd6..8c9fbe68 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0022_customerprofile_customer_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0022_customerprofile_customer_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0023_task_assigned_to.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0023_task_assigned_to.cpython-313.pyc index b65402c6..5d4d0e04 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0023_task_assigned_to.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0023_task_assigned_to.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0024_task_task_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0024_task_task_id.cpython-313.pyc index 4c52d217..a7b13a1f 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0024_task_task_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0024_task_task_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0025_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0025_status.cpython-313.pyc index ac702c4e..2bb7dcd4 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0025_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0025_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0026_remove_status_user_status_staff.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0026_remove_status_user_status_staff.cpython-313.pyc index c6cf5263..2b21e0b3 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0026_remove_status_user_status_staff.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0026_remove_status_user_status_staff.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0027_alter_status_staff.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0027_alter_status_staff.cpython-313.pyc index 9efa7c7f..632aaddd 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0027_alter_status_staff.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0027_alter_status_staff.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0028_remove_projecttype_color.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0028_remove_projecttype_color.cpython-313.pyc index 19100c3a..24e53b9c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0028_remove_projecttype_color.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0028_remove_projecttype_color.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0029_alter_reference_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0029_alter_reference_date.cpython-313.pyc index c15da603..bed6a897 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0029_alter_reference_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0029_alter_reference_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0030_tag.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0030_tag.cpython-313.pyc index 7e62d9be..818ca237 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0030_tag.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0030_tag.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0031_alter_staffprofile_image.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0031_alter_staffprofile_image.cpython-313.pyc index 761f3440..311ca185 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0031_alter_staffprofile_image.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0031_alter_staffprofile_image.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0032_point.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0032_point.cpython-313.pyc index 7670c7d7..1760cbeb 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0032_point.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0032_point.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0033_point_date_completed_point_date_workingon_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0033_point_date_completed_point_date_workingon_and_more.cpython-313.pyc index 6593dedb..574eec07 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0033_point_date_completed_point_date_workingon_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0033_point_date_completed_point_date_workingon_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0034_alter_point_date_completed_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0034_alter_point_date_completed_and_more.cpython-313.pyc index 70e4233f..04041c22 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0034_alter_point_date_completed_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0034_alter_point_date_completed_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0035_business_business_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0035_business_business_id.cpython-313.pyc index d9cd24ca..1c148d1b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0035_business_business_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0035_business_business_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0036_staffposition_alter_staffprofile_position.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0036_staffposition_alter_staffprofile_position.cpython-313.pyc index 02bbbc39..082ecb9b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0036_staffposition_alter_staffprofile_position.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0036_staffposition_alter_staffprofile_position.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0037_remove_staffprofile_position.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0037_remove_staffprofile_position.cpython-313.pyc index f4dc815c..8c8f5ed1 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0037_remove_staffprofile_position.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0037_remove_staffprofile_position.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0038_staffprofile_staff_position.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0038_staffprofile_staff_position.cpython-313.pyc index fd5f96ed..270594da 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0038_staffprofile_staff_position.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0038_staffprofile_staff_position.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0039_alter_staffprofile_staff_position.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0039_alter_staffprofile_staff_position.cpython-313.pyc index 1542dde2..0869b078 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0039_alter_staffprofile_staff_position.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0039_alter_staffprofile_staff_position.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0040_staffprofile_staff_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0040_staffprofile_staff_id.cpython-313.pyc index 5fd7f273..be63b6a4 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0040_staffprofile_staff_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0040_staffprofile_staff_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0041_dailyreport.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0041_dailyreport.cpython-313.pyc index b2dd42aa..37216c17 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0041_dailyreport.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0041_dailyreport.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0042_remove_customerprofile_email_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0042_remove_customerprofile_email_and_more.cpython-313.pyc index f7de7cd6..b648f88e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0042_remove_customerprofile_email_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0042_remove_customerprofile_email_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0043_businesstype.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0043_businesstype.cpython-313.pyc index c58a5e41..502fcf3e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0043_businesstype.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0043_businesstype.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0044_remove_business_business_type.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0044_remove_business_business_type.cpython-313.pyc index c1860820..87e164ef 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0044_remove_business_business_type.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0044_remove_business_business_type.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0045_business_type.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0045_business_type.cpython-313.pyc index 2c10d720..ab3a2c28 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0045_business_type.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0045_business_type.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0046_task_requirement.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0046_task_requirement.cpython-313.pyc index 39ec7152..765a1b3b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0046_task_requirement.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0046_task_requirement.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0047_task_status_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0047_task_status_date.cpython-313.pyc index 98a69118..bccf4c8e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0047_task_status_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0047_task_status_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0048_alter_customerprofile_business.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0048_alter_customerprofile_business.cpython-313.pyc index 7ded8626..09902d5a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0048_alter_customerprofile_business.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0048_alter_customerprofile_business.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0049_alter_customerprofile_business.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0049_alter_customerprofile_business.cpython-313.pyc index 148b0eca..446fa705 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0049_alter_customerprofile_business.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0049_alter_customerprofile_business.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0050_projectrequirement_added_by_projectrequirement_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0050_projectrequirement_added_by_projectrequirement_date.cpython-313.pyc index 42189da5..511e909d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0050_projectrequirement_added_by_projectrequirement_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0050_projectrequirement_added_by_projectrequirement_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0051_alter_task_requirement.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0051_alter_task_requirement.cpython-313.pyc index eff55eed..60a6efca 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0051_alter_task_requirement.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0051_alter_task_requirement.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0052_note_project.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0052_note_project.cpython-313.pyc index 94af2494..2768ba24 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0052_note_project.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0052_note_project.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0053_pointactivity.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0053_pointactivity.cpython-313.pyc index c51445ea..cc4af8dc 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0053_pointactivity.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0053_pointactivity.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0054_remove_point_date_completed_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0054_remove_point_date_completed_and_more.cpython-313.pyc index 32038ebf..e5baa4dd 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0054_remove_point_date_completed_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0054_remove_point_date_completed_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0055_alter_point_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0055_alter_point_status.cpython-313.pyc index 2c7cb989..5b545167 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0055_alter_point_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0055_alter_point_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0056_alter_pointactivity_end_time.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0056_alter_pointactivity_end_time.cpython-313.pyc index 24ece2ba..00d1241a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0056_alter_pointactivity_end_time.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0056_alter_pointactivity_end_time.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0057_point_total_time_hours_point_total_time_minutes_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0057_point_total_time_hours_point_total_time_minutes_and_more.cpython-313.pyc index 3eb4ad84..c79a426f 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0057_point_total_time_hours_point_total_time_minutes_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0057_point_total_time_hours_point_total_time_minutes_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0058_remove_point_total_time_hours_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0058_remove_point_total_time_hours_and_more.cpython-313.pyc index 3c042da3..f8284ba0 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0058_remove_point_total_time_hours_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0058_remove_point_total_time_hours_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0059_alter_task_requirement.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0059_alter_task_requirement.cpython-313.pyc index 4989dd74..16b9618c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0059_alter_task_requirement.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0059_alter_task_requirement.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0060_pointactivity_total_time.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0060_pointactivity_total_time.cpython-313.pyc index 4d63827f..27667716 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0060_pointactivity_total_time.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0060_pointactivity_total_time.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0061_alter_task_end_date_alter_task_start_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0061_alter_task_end_date_alter_task_start_date.cpython-313.pyc index a7be3e44..9e07bb22 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0061_alter_task_end_date_alter_task_start_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0061_alter_task_end_date_alter_task_start_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0062_connection.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0062_connection.cpython-313.pyc index 4f57a62b..2f2b7fb0 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0062_connection.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0062_connection.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0063_alter_connection_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0063_alter_connection_date.cpython-313.pyc index 72ab7126..75a3b834 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0063_alter_connection_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0063_alter_connection_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0064_reaction.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0064_reaction.cpython-313.pyc index c7539ee7..2c107a6f 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0064_reaction.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0064_reaction.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0065_alter_customerprofile_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0065_alter_customerprofile_status.cpython-313.pyc index 1fcd1295..eec3bfbf 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0065_alter_customerprofile_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0065_alter_customerprofile_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0066_remove_customerprofile_business_business_customer.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0066_remove_customerprofile_business_business_customer.cpython-313.pyc index 4919fec3..224df7a4 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0066_remove_customerprofile_business_business_customer.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0066_remove_customerprofile_business_business_customer.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0067_customerprofile_confirmed.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0067_customerprofile_confirmed.cpython-313.pyc index 133dfdeb..b911002a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0067_customerprofile_confirmed.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0067_customerprofile_confirmed.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0068_remove_customerprofile_confirmed_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0068_remove_customerprofile_confirmed_and_more.cpython-313.pyc index fd87924e..066b721a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0068_remove_customerprofile_confirmed_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0068_remove_customerprofile_confirmed_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0069_alter_business_logo_alter_projectfile_file_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0069_alter_business_logo_alter_projectfile_file_and_more.cpython-313.pyc index 3d35d837..419dfba9 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0069_alter_business_logo_alter_projectfile_file_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0069_alter_business_logo_alter_projectfile_file_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0070_department_alter_staffprofile_staff_position_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0070_department_alter_staffprofile_staff_position_and_more.cpython-313.pyc index b1186871..1b004a36 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0070_department_alter_staffprofile_staff_position_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0070_department_alter_staffprofile_staff_position_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0071_projecttype_department_ticket.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0071_projecttype_department_ticket.cpython-313.pyc index f9cc30b6..692fcf60 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0071_projecttype_department_ticket.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0071_projecttype_department_ticket.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0072_ticketupdate_ticketreaction_ticketattachment.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0072_ticketupdate_ticketreaction_ticketattachment.cpython-313.pyc index 657dd88c..9f4618a8 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0072_ticketupdate_ticketreaction_ticketattachment.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0072_ticketupdate_ticketreaction_ticketattachment.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0073_alter_ticket_regarding.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0073_alter_ticket_regarding.cpython-313.pyc index 21e2e645..b613129a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0073_alter_ticket_regarding.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0073_alter_ticket_regarding.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0074_rename_dare_added_ticketupdate_date_added.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0074_rename_dare_added_ticketupdate_date_added.cpython-313.pyc index 6ceb99cc..e6f7a6ba 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0074_rename_dare_added_ticketupdate_date_added.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0074_rename_dare_added_ticketupdate_date_added.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0075_remove_ticketattachment_ticket_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0075_remove_ticketattachment_ticket_and_more.cpython-313.pyc index 149aeaef..fd8143a9 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0075_remove_ticketattachment_ticket_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0075_remove_ticketattachment_ticket_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0076_alter_reference_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0076_alter_reference_date.cpython-313.pyc index fcb12a30..09a8b356 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0076_alter_reference_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0076_alter_reference_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0077_remove_project_status_project_active_projectstatus.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0077_remove_project_status_project_active_projectstatus.cpython-313.pyc index a01ac8c4..fc783db6 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0077_remove_project_status_project_active_projectstatus.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0077_remove_project_status_project_active_projectstatus.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0078_alter_projectstatus_status.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0078_alter_projectstatus_status.cpython-313.pyc index 10352dc7..651d9adc 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0078_alter_projectstatus_status.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0078_alter_projectstatus_status.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0079_alter_project_end_date_alter_project_start_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0079_alter_project_end_date_alter_project_start_date.cpython-313.pyc index 1c269380..9a1edf5e 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0079_alter_project_end_date_alter_project_start_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0079_alter_project_end_date_alter_project_start_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0080_project_logo.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0080_project_logo.cpython-313.pyc index e81e2229..50255a6b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0080_project_logo.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0080_project_logo.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0081_status_task.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0081_status_task.cpython-313.pyc index 33c0c0ab..d6c9219b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0081_status_task.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0081_status_task.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0082_pinnedproject.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0082_pinnedproject.cpython-313.pyc index d802a0d4..1731b300 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0082_pinnedproject.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0082_pinnedproject.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0083_rename_staffposition_jobposition_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0083_rename_staffposition_jobposition_and_more.cpython-313.pyc index b4cb120e..e094fcdd 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0083_rename_staffposition_jobposition_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0083_rename_staffposition_jobposition_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0084_staffposition.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0084_staffposition.cpython-313.pyc index 25f35129..893f9c63 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0084_staffposition.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0084_staffposition.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0085_rename_date_staffposition_start_date_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0085_rename_date_staffposition_start_date_and_more.cpython-313.pyc index 7fbe7eb6..65b7700c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0085_rename_date_staffposition_start_date_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0085_rename_date_staffposition_start_date_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0086_remove_connection_status_connection_terminated_at.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0086_remove_connection_status_connection_terminated_at.cpython-313.pyc index ecd26939..94e59931 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0086_remove_connection_status_connection_terminated_at.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0086_remove_connection_status_connection_terminated_at.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0087_remove_connection_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0087_remove_connection_date.cpython-313.pyc index 1099dd98..bc2652f7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0087_remove_connection_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0087_remove_connection_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0088_connection_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0088_connection_date.cpython-313.pyc index f41f1c0f..466fbd8b 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0088_connection_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0088_connection_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0089_connection_connected.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0089_connection_connected.cpython-313.pyc index 355774db..3a646565 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0089_connection_connected.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0089_connection_connected.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0090_rename_terminated_at_connection_last_seen.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0090_rename_terminated_at_connection_last_seen.cpython-313.pyc index 5795957e..aef5b3bd 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0090_rename_terminated_at_connection_last_seen.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0090_rename_terminated_at_connection_last_seen.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0091_alter_connection_user.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0091_alter_connection_user.cpython-313.pyc index fe211ccb..6807da98 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0091_alter_connection_user.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0091_alter_connection_user.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0092_rename_connected_connection_online.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0092_rename_connected_connection_online.cpython-313.pyc index efcaee81..1626bb4d 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0092_rename_connected_connection_online.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0092_rename_connected_connection_online.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0093_connection_disconnected.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0093_connection_disconnected.cpython-313.pyc index 5e04a563..72ebd75a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0093_connection_disconnected.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0093_connection_disconnected.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0094_customuser.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0094_customuser.cpython-313.pyc index 68eea3dc..09075658 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0094_customuser.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0094_customuser.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0095_delete_customuser.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0095_delete_customuser.cpython-313.pyc index 04863b17..8f890296 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0095_delete_customuser.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0095_delete_customuser.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0096_status_date_time.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0096_status_date_time.cpython-313.pyc index c1fd8d02..5812a81c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0096_status_date_time.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0096_status_date_time.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0097_remove_status_date_remove_status_time.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0097_remove_status_date_remove_status_time.cpython-313.pyc index 661c59dc..5538c484 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0097_remove_status_date_remove_status_time.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0097_remove_status_date_remove_status_time.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0098_rename_emailorusername_projectcredential_identifier.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0098_rename_emailorusername_projectcredential_identifier.cpython-313.pyc index 2f254c7f..1854be34 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0098_rename_emailorusername_projectcredential_identifier.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0098_rename_emailorusername_projectcredential_identifier.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0099_remove_projectcredential_usedfor_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0099_remove_projectcredential_usedfor_and_more.cpython-313.pyc index 86971ac1..14f2a5b3 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0099_remove_projectcredential_usedfor_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0099_remove_projectcredential_usedfor_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0100_projectcredential_date_added.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0100_projectcredential_date_added.cpython-313.pyc index 148de8c0..7b0d65c6 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0100_projectcredential_date_added.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0100_projectcredential_date_added.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0101_rename_date_projectfile_date_added.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0101_rename_date_projectfile_date_added.cpython-313.pyc index b3bb5610..537346aa 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0101_rename_date_projectfile_date_added.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0101_rename_date_projectfile_date_added.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0102_remove_projectfile_date_added_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0102_remove_projectfile_date_added_and_more.cpython-313.pyc index 8a04664f..0be14d41 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0102_remove_projectfile_date_added_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0102_remove_projectfile_date_added_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0103_alter_projectfilealbum_date_added.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0103_alter_projectfilealbum_date_added.cpython-313.pyc index 90db6468..98ed54a7 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0103_alter_projectfilealbum_date_added.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0103_alter_projectfilealbum_date_added.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0104_projectfilealbum_file.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0104_projectfilealbum_file.cpython-313.pyc index caf32d1a..2d128643 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0104_projectfilealbum_file.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0104_projectfilealbum_file.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0105_remove_projectfile_name_remove_projectfile_project_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0105_remove_projectfile_name_remove_projectfile_project_and_more.cpython-313.pyc index 3b288624..cdfb422a 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0105_remove_projectfile_name_remove_projectfile_project_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0105_remove_projectfile_name_remove_projectfile_project_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0106_alter_projectfile_file.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0106_alter_projectfile_file.cpython-313.pyc index dc8062e9..1bcf7899 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0106_alter_projectfile_file.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0106_alter_projectfile_file.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0107_remove_staffprofile_active.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0107_remove_staffprofile_active.cpython-313.pyc index 913e1051..bb8664c0 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0107_remove_staffprofile_active.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0107_remove_staffprofile_active.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0108_status_type_status_type_id.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0108_status_type_status_type_id.cpython-313.pyc index dcaa4df5..8f07af1c 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0108_status_type_status_type_id.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0108_status_type_status_type_id.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0109_remove_status_task.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0109_remove_status_task.cpython-313.pyc index 994470de..e0d0e881 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0109_remove_status_task.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0109_remove_status_task.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0110_projectrequirement_milestone.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0110_projectrequirement_milestone.cpython-313.pyc index ef0ff7eb..87841155 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0110_projectrequirement_milestone.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0110_projectrequirement_milestone.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0111_rename_projectrequirement_userstory_and_more.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0111_rename_projectrequirement_userstory_and_more.cpython-313.pyc index c7761adf..a9eecd84 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0111_rename_projectrequirement_userstory_and_more.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0111_rename_projectrequirement_userstory_and_more.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0112_rename_title_milestone_name.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0112_rename_title_milestone_name.cpython-313.pyc index ad8632b1..fb8d4d70 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0112_rename_title_milestone_name.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0112_rename_title_milestone_name.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0113_userstory_completed_userstory_confirmed.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0113_userstory_completed_userstory_confirmed.cpython-313.pyc index c0782624..05faae30 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0113_userstory_completed_userstory_confirmed.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0113_userstory_completed_userstory_confirmed.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0114_alter_project_end_date.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0114_alter_project_end_date.cpython-313.pyc index f7579ffd..575eb6cc 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0114_alter_project_end_date.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0114_alter_project_end_date.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0115_projectstatus_default_created.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0115_projectstatus_default_created.cpython-313.pyc index d32124ad..b0afde84 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0115_projectstatus_default_created.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0115_projectstatus_default_created.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/0116_remove_projectstatus_default_created.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/0116_remove_projectstatus_default_created.cpython-313.pyc index ed8a8756..71cc4ec0 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/0116_remove_projectstatus_default_created.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/0116_remove_projectstatus_default_created.cpython-313.pyc differ diff --git a/osinaweb/osinacore/migrations/__pycache__/__init__.cpython-313.pyc b/osinaweb/osinacore/migrations/__pycache__/__init__.cpython-313.pyc index a0bc7027..88768b9f 100644 Binary files a/osinaweb/osinacore/migrations/__pycache__/__init__.cpython-313.pyc and b/osinaweb/osinacore/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/osinaweb/osinacore/templates/add_templates/add-prospecting-list.html b/osinaweb/osinacore/templates/add_templates/add-prospecting-list.html new file mode 100644 index 00000000..bcd02546 --- /dev/null +++ b/osinaweb/osinacore/templates/add_templates/add-prospecting-list.html @@ -0,0 +1,71 @@ +{% extends "main.html" %} +{%load static%} +{% block content %} + +
+
+

+ Add Prospecting List +

+ +
+ {% csrf_token %} +
+ +
+ + +
+
+ + +
+ + + + + +
+ +
+
+
+
+
+ + + + + + + +{% endblock content %} \ No newline at end of file diff --git a/osinaweb/osinacore/templates/edit_templates/edit-addressbook.html b/osinaweb/osinacore/templates/edit_templates/edit-addressbook.html index 4490aaf4..60202df7 100644 --- a/osinaweb/osinacore/templates/edit_templates/edit-addressbook.html +++ b/osinaweb/osinacore/templates/edit_templates/edit-addressbook.html @@ -10,8 +10,7 @@
{% csrf_token %} -
- +
+
+

+ Edit Prospecting List +

+ + + + {% csrf_token %} +
+
+ + +
+ +
+ + +
+
+ + + + + + + + + + + {% for item in list_items %} + + + + + {% empty %} + + + + {% endfor %} + + + + + + + +
ContactAttention
+ {{ item.addressbook.first_name }} {{ item.addressbook.last_name }} + + + + +
+ No contacts yet. +
+ + + + + + +
+ +
+
+
+ +
+
+ +
+
+ + + +{% endblock content %} diff --git a/osinaweb/osinacore/templates/listing_pages/prospecting-lists.html b/osinaweb/osinacore/templates/listing_pages/prospecting-lists.html new file mode 100644 index 00000000..7947efb3 --- /dev/null +++ b/osinaweb/osinacore/templates/listing_pages/prospecting-lists.html @@ -0,0 +1,122 @@ +{% extends "main.html" %} +{%load static%} +{% block title %}My Projects{% endblock %} +{% block content %} + + +
+
+

Prospecting Lists

+ + +
+
+
+
+ + +
+
+
+ +
+ + +
+ + + + + + + + + + + + + + + + {% for list in lists %} + + + + + + + + + + + + {% endfor %} + +
+ Name + + Description + + Date Added + + Items + + Actions +
+
+ +

{{ list.name }}

+
+
+

{{list.description}}

+
+

{{list.date_added}}

+
+

{{ list.prospectinglistitem_set.all|length }}

+
+ +
+
+
+
+ + +{% endblock content %} \ No newline at end of file diff --git a/osinaweb/osinacore/templates/main.html b/osinaweb/osinacore/templates/main.html index 0944eca0..c9c9b1de 100644 --- a/osinaweb/osinacore/templates/main.html +++ b/osinaweb/osinacore/templates/main.html @@ -498,7 +498,7 @@