Re: Token Generation Errors on Login

2025-02-13 Thread Sri Santhosh
First you need to encrypt that then decrypt On Thu, Feb 13, 2025, 8:31 PM Balaji V wrote: > Hi, I'm new to Django. When I try to generate a login token, I receive > these errors: > {"detail": "Authentication credentials were not provided."} > {"error_short": "Module is not Assigned", "status

Re: Any internship or part time work

2024-09-25 Thread Sri Santhosh
Change your resume On Mon, Sep 23, 2024, 3:24 PM AYUSH GUPTA wrote: > Hii, > I am interested in the Django Developer position. Any Internship or > part time job available? > i am attaching my resume. > > -- > You received this message because you are subscribed to the Google Groups > "Djang

Re:

2024-02-27 Thread Surya Santhosh
I am a fresher who is doing an individual project. I have only the basics of python. On Sun, Feb 25, 2024 at 1:45 PM Light Ofor wrote: > Hello am interested > GitHub:Lyte77 > Whatsapp:+2349136040153 > Thanks > > -- > You received this message because you are subscribed to the Google Groups > "Dj

Need help in python Django project "online train ticket booking system"

2024-02-19 Thread Surya Santhosh
Need help in python Django project "online train ticket booking system" -- 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

Re: What to learn after Django, Node.js or React?1

2023-09-10 Thread santhosh
Reactjs with django Or reactjs with nodejs On Sun, 10 Sept, 2023, 1:48 pm Mike Dewhirst, wrote: > On 10/09/2023 4:40 pm, abu yahya Diab wrote: > > Hi guys, > > I'm a django developer(junior), do you advice me to learn Node.js, or > React to be full Stack developer. > > > Neither. At least not be

Re: Create timer to permanently delete user's account

2022-10-17 Thread santhosh
Use cron job and get the created date and use condition like 30 days or equal then delete the user using there ids On Tue, 18 Oct, 2022, 11:00 am Lakshyaraj Dash, < dashlakshyaraj2...@gmail.com> wrote: > Hello everybody, > From many days I'm thinking that how to create a time of 30 days to delete

Re: Using External HTML files in Django

2022-05-03 Thread Santhosh sridhar
Thanks Mike. It worked ! On Tuesday, May 3, 2022 at 9:32:26 AM UTC+5:30 Mike Dewhirst wrote: > On 3/05/2022 8:44 am, Hazho Human wrote: > > Why not serving that specific URL with Nginx or Apache? > > On Tue, 3 May 2022 at 03:15, Santhosh sridhar > wrote: > >> Hi,

Using External HTML files in Django

2022-05-02 Thread Santhosh sridhar
Hi, I have few html files which are not part of my django project templates directory. I want to render these html files as a response into some url. Could someone help if you have any idea? I tried using {% include %} and it gave TemplateDoesNotExist error. -Santhosh -- You received this

Re: Creating dynamic chart / graphs with Django

2021-05-15 Thread Santhosh Kumar
i too have similar requirement. I tried plotly, however the integration of django and plotly didnt go well often with huge data in sense, loading time was high and special channels setup was required. (i learnt from this video ). Currently im trying w

Re: Count the number of emails sent everyday

2020-03-13 Thread Santhosh Sridharan
Is there any third party apis that you suggest please? On Fri, 13 Mar, 2020, 8:07 PM Suraj Thapa FC, wrote: > You can use some 3rd party apis > > On Fri, 13 Mar 2020, 4:42 pm Santhosh sridhar, > wrote: > >> Hi, >> I am working on django and I trigger emai

Count the number of emails sent everyday

2020-03-13 Thread Santhosh sridhar
Hi, I am working on django and I trigger emails to multiple email IDs in different scenarios, Is there a way to get the count of emails sent everyday instead of storing it in tables. Regards, Santhosh -- You received this message because you are subscribed to the Google Groups "Django

Error while adding entries through django admin

2020-03-02 Thread Santhosh sridhar
's help.* *Regards,* *Santhosh* -- 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 this

Django values_list queryset returns queryset object instead of list

2020-02-26 Thread Santhosh sridhar
("{{views|safe}}".replace(/'/g, '"').replace(/u"/g, '"').replace(/"/g, '"'))); it gives me the result as -- > . How to fix this? Appreciating any help. Regards, Santhosh -- You received this message because you

Invalid Literal for int() with base10 error

2020-02-11 Thread Santhosh sridhar
I have a model called Project, class Project(models.Model): name = models.CharField(max_length=50, unique=True) technology = models.ForeignKey(Technology, related_name='projects',on_delete=models.CASCADE) chipName = models.CharField(max_length=50) is_swarm = models.NullBooleanFi

What are the topics should a guy with 5+ years experience in django should know ?

2020-02-06 Thread Santhosh Kumar
Working in Django for more than 5 years. Want to know what are the topics in Django I must have good knowledge? Thanks in advance. Regards, Santhosh -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

Re: Python Django Training

2020-02-03 Thread Santhosh Kumar
I am interested. Add me. Regards, Santhosh On Saturday, February 1, 2020 at 7:12:52 PM UTC+5:30, Srikanth K wrote: > > Hi, > > I am from Hyderabad. I am Python Developer by Profession. I am eager take > up any Python , Django Training (online Preferrable or Weekends). Members

Upgrading django from 1.8 to 2.2.0

2020-01-31 Thread Santhosh sridhar
d the MIDDLEWARE_CLASSES import in settings files to MIDDLEWARE = {} I tried to run the server, still it says "TypeError: __init__() missing 1 required positional argument: 'on_delete' and it is pointing to /usr2/santhosh/myproject/myapp/migrations/0002_abc.py What should I do now? Do I ne

django-request to log user statistics

2020-01-30 Thread Santhosh sridhar
g an error. Could someone help?? Regards, Santhosh -- 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 vie

Create Dashboard for CSV data

2020-01-20 Thread Santhosh sridhar
I have a csv file : each line having some inputs and some status. I need to read this csv file and present the data as a dashboard with some charts. I came across to use chart js plugin. Is there any better approach? -- You received this message because you are subscribed to the Google Groups

Re: Using Daphne without altering nginx config on Google App Engine

2020-01-20 Thread Sai Santhosh
Hlelo On Mon, Jan 20, 2020 at 12:44 PM Integr@te System wrote: > Hi Rahu, > > Plz scrutinize more info to differ, combine and select right one for your > case. > > https://stackshare.io/stackups/google-app-engine-vs-nginx > > > On Mon, Jan 20, 2020, 12:08 Rahul Arora wrote: > >> Thanks for you

specefic field(s) for each query.

2020-01-11 Thread Santhosh sridhar
You can query like this in Django, say A is the table name and B is the columns. A.objects.all().values('B') or A.objects.all().values_list('B',flat=True) Regards, San -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this g

specefic field(s) for each query.

2020-01-11 Thread Santhosh sridhar
You can query like this in Django, say the table name is A and column name is name. A.objects.all() will give all the objects and A.objects.filter(name='Django') will give all the objects whose name is Django. -- You received this message because you are subscribed to the Google Groups "Django

Integrate Django with React

2020-01-03 Thread Santhosh sridhar
Is there a way to integrate React JS framework with Django? How to do that? What is the advantage of using such frontend frameworks over normal ajax? Any help or explanation would be helpful. Thanks! -- You received this message because you are subscribed to the Google Groups "Django users" grou

Prefill Checkboxes and send values to backend

2020-01-02 Thread Santhosh sridhar
Hi, I have a multiselect drowdown. I want to display the selected values from a drop-down in a separate div as rows with multiple checkboxes to select. I have tried this code in JSFiddle, jsfiddle.net/k7nL3s2z . Please let me know if there is any better approach. I need to pass this data(Selec

Display Multiselect bootstrap drop-down value in div with checkbox options

2019-12-27 Thread Santhosh sridhar
with 5 checkboxes to select in each row. The count of checkbox is fixed. This div should not be available on page load and clearing the values of dropdown. Any idea would help.Thanks. JSFiddle Link : http://jsfiddle.net/dcskfowp/ Thanks, Santhosh -- You received this message because you are

How to use django-request module to log all the user activities in a table?

2019-12-26 Thread Santhosh sridhar
I'm using Django 1.8 version. Need to know how to use django-request or any other module to capture the all the user activities of a website. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emai

Integrate React with Django

2019-12-24 Thread Santhosh sridhar
Is it possible to integrate React Js framework with Django? What is the advantage of using react over Ajax with Django? Any example would help me. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receivin

Embed an image in email Django

2019-12-17 Thread Santhosh sridhar
Hi, I am using Django's EmailMessage module to trigger an email with embedded image from the static directory path. Somehow the image is not rendering properly in the triggered email. Please find the below code and appreciating your help. Thanks, Santhosh *Code:* recipient_list

Embed an image in email Django

2019-12-17 Thread Santhosh sridhar
Hi, I am using Django's Email message module to trigger an email with an embed image from my static folder. Could someone help? Below is the code that I have used. Code : recipient_list = ['a...@gmail.com'] from_email = 'a...@gmail.com' message = '' path = "{% static 'images/Wel

how to create a project in django in windows 7

2015-09-14 Thread Santhosh Acharya
I am a fresher to django... can any one explain me how to install django. and what all are the requirement needed. I tried by searching google still am not able to do it. So any one please help me. Tank you. -- You received this message because you are subscribed to the Google Groups "Django

Django Online appointment scheduler

2015-06-23 Thread SANTHOSH BADAM
Hi, I am new to Django. I want to build web app which allows a user to schedule appointment by looking at a service( business service like Salon, Spa, ) calendar and book a slot which is available. It would be great if someone can direct me to right path where there are enough resources to un

Earn money from Google.com

2008-03-04 Thread Santhosh
Google.com is not only a search engine but also does webadvertising through websites and blogs.Lakhs of common people are earnings hundreds of dollars through online advertising. For more details visit http://www.googlepromisesyou.blogspot.com/ --~--~-~--~~~---~--~--

Database operations too slow

2007-07-09 Thread Santhosh
throughout and it shud terminate the connection only when i want it to.. Django version: 0.95 mysql version: 5.0.22 Thanks, Santhosh --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to