How to filter and get all vendor details using category

2021-12-08 Thread Gautam Ankul
Here is my models class Vendor(models.Model): category_id = models.ForeignKey( Category, blank=True, null=True, verbose_name=u"Category id", on_delete=models.CASCADE, ) vendor_id = models.CharField( unique=True, max_length=50, blank=False, null=False, verbose_name=u"Vendor Id", ) vendor_name = mo

[no subject]

2022-02-02 Thread Gautam Ankul
How to use fee due notifications in django something helpe -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view thi

Re: TypeError: fromisoformat: argument must be str

2022-02-08 Thread Gautam Ankul
Same issue in mine project but when database name change and delete all migration file then it is resolve On Tue, 8 Feb, 2022, 3:45 PM Sammeeey, wrote: > I have posted my issue to the Django Forum. > Please find it in the respective thread >

how to filter by month from template

2022-02-22 Thread Gautam Ankul
HERE STACKOVER FLOW LINK OF QUESTIONS :https://stackoverflow.com/questions/71232795/how-to-filter-by-month-from-template - I'm attempting to channel a dateti

How Notify Current user ,your insurance is going expiry within 5 days in django

2022-03-01 Thread Gautam Ankul
I am stuck in one problem and i want to notify current logged user for it's insurance will be expired within 5 days ago. class Vehicle(models.Model): vehicle_no = models.CharField(max_length=100, blank=False, null=False) chasis_no = models.