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.

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

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 >

[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

How to filter and get all vendor details using category

2021-12-08 Thread Gautam Ankul
rializer): class Meta: model = Vendor fields = ["vendor_id","vendor_name","vendor_location"] and i want that type of result: { "ErroeCode": "0", "status": 200, "message": "Get vendor det

ProgrammingError: relation "auth_user" does not exist.

2016-12-22 Thread Biplab Gautam
I tried to set up custom user model by inheriting from AbstractBaseUser as instructed in django documentation, but I am encountering relation "auth_user" does not exist error. #models.py from django.db import models from django.contrib.auth.models import (BaseUserManager, AbstractBaseUser) clas

Column width changeable in django admin screen

2015-09-16 Thread Pawanesh Gautam
How to make column width changeable in django admin screen. so that client can change width using drag n drop in django admin screen . -- 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

Re: customize app ordering in django admin

2015-09-15 Thread Pawanesh Gautam
Got solution : https://djangosnippets.org/snippets/2613/ just add 1.> " register = template.Library() " in /templatetags/custom_tags.py 2.> templatetags folder must have __init.py__ file On Thursday, September 10, 2015 at 4:20:43 PM UTC+5:30, Pawanesh Gautam wrote: > >

customize app ordering in django admin

2015-09-10 Thread Pawanesh Gautam
hi i have list of app (app1,app2.app3,app3,app4).i would like to change the app order in admin site so that it will look like dis : (app1,app3,app4,app2). please suggest some tips to perform this . thanks -- You received this message because you are subscribed to the Google Groups "Django us

Customization in User Add screen

2015-09-09 Thread Pawanesh Gautam
how to add extra field in user add screen ?? -- 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 post to this group, s

No module named http_client

2015-09-02 Thread Pawanesh Gautam
Hiii, i am getting following issue on my django project : ImportError at /admin No module named http_client please suggest some solution .. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving e

webdav

2015-09-01 Thread Pawanesh Gautam
whats the use of webdav in django project ? -- 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 post to this group, sen

middleware

2015-08-25 Thread Pawanesh Gautam
why middleware is required ?? -- 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 post to this group, send email to dj

Re: NetBeans IDE for Python

2009-01-17 Thread Gautam
There is some problem with the parser recognizing package imports in the from ... import ... syntax. What seems to work is if you import packages directly as import ... as So for the django models import as: import django.db.models as models And voila, completion in Netbeans works! On Nov