Django bugfix releases issued: 3.0.8 and 2.2.14

2020-06-30 Thread Mariusz Felisiak
Details are available on the Django project weblog: https://www.djangoproject.com/weblog/2020/jul/01/django-bugfix-releases-308-2214/ -- 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

How to display a line graph in Django?

2020-06-30 Thread ratnadeep ray
Hi all, I have wrote a python program to display the line graph as follows: import matplotlib.pyplot as plt x = [1,2,3] y = [2,4,1] plt.plot(x, y) plt.xlabel('x - axis') plt.ylabel('y - axis') plt.title('My first graph!') plt.show() Now I need to display the same via

Need suggestions-Reg

2020-06-30 Thread Sai Pavan Kumar
Hi , I need to integrate the video conferencing in my Django application.which is the best open source video conferencing tool available .please suggest me. Thanks and Regards Pavan T -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: Can anybody answe how i can access infromation from the parent modell i my HTML template in Django?

2020-06-30 Thread The Sha
Thank you friend, it worked Den tisdag 30 juni 2020 kl. 13:22:11 UTC+2 skrev Andréas Kühne: > > All you need to do is update the render call a dictionary with the > customuser variable in it: > > return render(request, 'members/member_contact_form.html', > {'ContactFormset':ContactFormset,

Re: Can anybody answe how i can access infromation from the parent modell i my HTML template in Django?

2020-06-30 Thread The Sha
It worked thank you my friend! Den tisdag 30 juni 2020 kl. 11:00:53 UTC+2 skrev Andréas Kühne: > > Hi, > > You need to pass the variables that you want to use in the template to the > template itself. You do this here: > > return render(request, 'members/member_contact_form.html', >

Re: Is there a package that enables one Django project to authenticate via a second Django project?

2020-06-30 Thread David Rashty
That's exactly what I was thinking, but I need to test it. Thanks! On Tue, Jun 30, 2020 at 12:54 PM Julio Cojom wrote: > What about using DRF with token login? > > > > El jue., 25 jun. 2020 a las 13:26, Dave R () escribió: > >> I keep running into this problem and started working on a custom

Re: Is there a package that enables one Django project to authenticate via a second Django project?

2020-06-30 Thread Julio Cojom
What about using DRF with token login? El jue., 25 jun. 2020 a las 13:26, Dave R () escribió: > I keep running into this problem and started working on a custom > solution... but before I spend hours on this, I want to confirm that such a > package/solution doesn't already exist. > > I was

Re: Is there a package that enables one Django project to authenticate via a second Django project?

2020-06-30 Thread David Rashty
Thanks! 1. Yes. djangito_server and djangito_client are regular Django apps that are optimized to work together but can be used separately. However, I haven't specifically tested it using djangito_server with social_django. I'll add "testing with social_django" as an item on the github issues

call the model of the secondary database in djnago using Multiple Databases

2020-06-30 Thread Pradyum Gupta
https://stackoverflow.com/q/62658396/7999665 -- 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 discussion

Re: Live updates of Admin's list_display data

2020-06-30 Thread Suraj Thapa FC
Use channels On Tue, 30 Jun, 2020, 4:36 pm Olivier, wrote: > Hello, > > Django Admin implements list_display settings with which you can create > columns of database-extracted or computed values. > > Is there to update these values without requiring Django Admin users to > reload or refresh

Re: Can anybody answe how i can access infromation from the parent modell i my HTML template in Django?

2020-06-30 Thread Andréas Kühne
All you need to do is update the render call a dictionary with the customuser variable in it: return render(request, 'members/member_contact_form.html', {'ContactFormset':ContactFormset, 'Address Formset':AddressFormset, 'customuser': customuser }) Regards, Andréas Den tis 30 juni 2020 kl

Live updates of Admin's list_display data

2020-06-30 Thread Olivier
Hello, Django Admin implements list_display settings with which you can create columns of database-extracted or computed values. Is there to update these values without requiring Django Admin users to reload or refresh current page ? Best regards -- You received this message because you are

Re: Can anybody answe how i can access infromation from the parent modell i my HTML template in Django?

2020-06-30 Thread The Sha
Ok i understand, how du i put the CustomUser in the render method so i cant get {{ CustomUser.first_name }} in this case? Den tisdag 30 juni 2020 kl. 11:00:53 UTC+2 skrev Andréas Kühne: > > Hi, > > You need to pass the variables that you want to use in the template to the > template itself. You

Re: Can anybody answe how i can access infromation from the parent modell i my HTML template in Django?

2020-06-30 Thread Andréas Kühne
Hi, You need to pass the variables that you want to use in the template to the template itself. You do this here: return render(request, 'members/member_contact_form.html', {'ContactFormset':ContactFormset, 'AddressFormset':AddressFormset }) The dictionary you add to the render method there

Re: Is there a package that enables one Django project to authenticate via a second Django project?

2020-06-30 Thread Andréas Kühne
Hi, I saw your other post - great work with the oauth server and client apps. I think the solution looks very promising. I like the way you can configure everything. A few questions though: 1. Would it be possible to use another SSO package to login to the Djangito server? We currently use

Re: How to add domain from GoDaddy to Heroku

2020-06-30 Thread Akinfolarin Stephen
at what point where you stuck can you share may be i can be of help On Tue, Jun 30, 2020 at 12:16 PM John McClain wrote: > I was able to do so Micah > > it took almost a day to propagate though. How long has it been since you > did the redirects > > > On Mon, 29 Jun 2020 at 22:39, Micah Beckman