Re: CAn we use Django framework in company industry ?

2022-09-13 Thread Mohammed Alnajdi
Yes, Django is an open source framework and you can use it to build your own websites. Sent from my iPhone > On 13 Sep 2022, at 5:11 PM, خالد بن الوليد صحراوي > wrote: > > Hello. > I 'm working with Django to build a Web app for my industrial company, > I wans to ask if it possible to bui

Django postgres high availability

2020-12-29 Thread Mohammed Alnajdi
Greetings Have anyone got postgres with high availability setup to work with django ? If yes can you please share any resources on how to do the right configuration? Thanks Sent from my iPhone -- You received this message because you are subscribed to the Google Groups "Django users" group

Re: Integrating GeoDjango with Esri API

2020-11-20 Thread Mohammed Alnajdi
eed. > > Saludos, > *Rodrigo Culagovski* > Director > +569 7667 0402 > H98R+8C Santiago > > > > On Fri, 20 Nov 2020 at 14:37, Mohammed Alnajdi > wrote: > >> You might want to check out the GeoNode project. >> >> Sent from my iPhone >> >&g

Re: Integrating GeoDjango with Esri API

2020-11-20 Thread Mohammed Alnajdi
You might want to check out the GeoNode project. Sent from my iPhone > On 20 Nov 2020, at 3:58 PM, Rodrigo Cea wrote: > > I'm developing a mapping website. I will be consuming map layers from ESRI > Online. I see they have a fairly sophisticated Python API. The site will be > django based.

Re: Can someone help me??

2020-07-01 Thread Mohammed Alnajdi
The error seems to be somewhere in the Urls I think it might be issue with "{% url 'blog:index/' %}" try to remove the slash "{% url 'blog:index' %}" you might need to do the same with other urls On Thu, Jul 2, 2020 at 9:31 AM Hella Nick wrote: > class Article(models.Model): >> # time =

Re: User.objects.all() returns only one field

2020-05-07 Thread Mohammed Alnajdi
User.objects.all() will return a queryset you can put it in a loop such as users = User.objects.all() for user in users: user.first_name And also there are other ways to get dict instead of queryset object but its up to you. Sent from my iPhone > On 7 May 2020, at 2:46 PM, Mohsen Pahlevan

Re: installation of django

2020-02-13 Thread Mohammed Alnajdi
Try this pip —default-timeout=10 -v install django Your problem is either internet or antivirus. > > On 13 Feb 2020, at 8:36 AM, paarull shukla > wrote: > >  > Sir please help me out. I m not able to install it.. Getting trouble since 5 > days back > >> On Thu, 13 Feb, 2020, 5:29 AM Di

Re: installation of django

2020-02-11 Thread Mohammed Alnajdi
it might be blocked by your antivirus. example i have kaspersky. it block any pip try to install. On Tue, Feb 11, 2020 at 7:35 PM Desh Deepak wrote: > Hi, > > > If you unable install django till now, you can connect your computer with > my computer then i can solve the problem easily. > > Or cal

Re: External SSO for Django

2019-12-23 Thread Mohammed Alnajdi
Django support remote_user coming from web-server [apache, nginx] you could use apache and the apache module for saml called mod_auth_mellon to let the web-server handle authentication and with remote_user in django users will be created in your application. https://docs.djangoproject.com/en/3.0/h