Page Integration

2022-11-10 Thread Pooja Kumari
Hi.. Can anyone help me with django templates? Actually I have a registration page where user can signup and data will be saved in admin panel or database but I am not able to do that. Registration page is working when I hit URL but data is not saving in database. Let me know If anyone have idea

Re: Page Integration

2022-11-10 Thread Lakshyaraj Dash
Please see that if you're calling the .save() method or not On Thu, Nov 10, 2022, 21:02 Pooja Kumari wrote: > Hi.. Can anyone help me with django templates? Actually I have a > registration page where user can signup and data will be saved in admin > panel or database but I am not able to do

Single Sign On in Django

2022-11-10 Thread venkat Bukka
Hello all, Could anyone please let me know how we can implement SSO in the django...for authenticating multiple apps in a base application. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Re: dynamic formular

2022-11-10 Thread Malick Diagne
Good morning Please write in french if you Can I try to help you Thanks you Le jeu. 10 nov. 2022 à 2:47 PM, Arnold Falanga a écrit : > Hello can anyone help me to design a dynamic form with Django the idea is > to have two parts in this form. a link to add the lines > > -- > You received this

Re: Page Integration

2022-11-10 Thread DJANGO DEVELOPER
you need to share the code.no one will be able to help you this way. On Thu, Nov 10, 2022 at 8:49 PM Lakshyaraj Dash < dashlakshyaraj2...@gmail.com> wrote: > Please see that if you're calling the .save() method or not > > On Thu, Nov 10, 2022, 21:02 Pooja Kumari wrote: > >> Hi.. Can anyone help

Re: Page Integration

2022-11-10 Thread amruth bitla
Ya easy and simple  On Thu, 10 Nov, 2022, 9:03 pm Pooja Kumari, wrote: > Hi.. Can anyone help me with django templates? Actually I have a > registration page where user can signup and data will be saved in admin > panel or database but I am not able to do that. Registration page is > working

Re: formulaire dynamique

2022-11-10 Thread Malick Diagne
Bonjour Le mer. 9 nov. 2022 à 10:25 PM, Arnold Falanga a écrit : > Bonjour > quelqu'un peut m'aider à concevoir un formulaire dynamique avec Django[image: > capture_jupiter.png] > l'idée est d'avoir deux parties dans ce formulaire . > un lien pour ajouter les lignes > > -- > You received this

Change Email_host_user and Email_host_power

2022-11-10 Thread Raúl Luján Delgado
hello, I must change the email and password in settings, the problem is that the old email follow recepting the emails withou respect the change and It doesn't realize about ...?? -- You received this message because you are subscribed to the Google Groups "Django users" group. To

dynamic formular

2022-11-10 Thread Arnold Falanga
Hello can anyone help me to design a dynamic form with Django the idea is to have two parts in this form. a link to add the lines -- 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,

Re: Single Sign On in Django

2022-11-10 Thread carlos
Hi, try use this https://github.com/divio/django-simple-sso https://micropyramid.medium.com/django-single-sign-on-sso-to-multiple-applications-64637da015f4 On Thu, Nov 10, 2022 at 8:48 AM venkat Bukka wrote: > Hello all, > Could anyone please let me know how we can implement SSO in the >

Re: Move apps to different folders or to a root folder

2022-11-10 Thread Nick Chang
Hi Mike, Thanks for your reply. To further clarify about `db_table` name regarding this vertical move. The 'db_table' field is actually already specified in the models. However, if the 'db_table' name were not specified in the model and let django handle generation table names, would this move

Re: Page Integration

2022-11-10 Thread Desh Deepak
https://docs.djangoproject.com/en/4.1/topics/auth/default/ On Thu, Nov 10, 2022, 9:02 PM Pooja Kumari wrote: > Hi.. Can anyone help me with django templates? Actually I have a > registration page where user can signup and data will be saved in admin > panel or database but I am not able to do

Re: Page Integration

2022-11-10 Thread Pooja Kumari
Where I have to use save() method? In models or somewhere else? On Thu, Nov 10, 2022, 9:19 PM Lakshyaraj Dash wrote: > Please see that if you're calling the .save() method or not > > On Thu, Nov 10, 2022, 21:02 Pooja Kumari wrote: > >> Hi.. Can anyone help me with django templates? Actually I

Re: dynamic formular

2022-11-10 Thread Arnold Falanga
merci beaucoup au fait un souci depuis avec la conception du formulaire. je dois implémenter un formulaire qui a deux parties la partie haute reprend les détails généraux de la commande tel que: la date de réception, le numéro du bon de commande , etc. la deuxième partie du formulaire devra

Re: Page Integration

2022-11-10 Thread Chukwudi Onwusa
If you are using function based view in your views.py . After you must have equated the input values through the name attribute to the instance of the class in your model, then instance.save() before you redirect. This should be done in the views.py not models. On Thu, Nov 10, 2022, 20:07 Pooja

Re: Page Integration

2022-11-10 Thread Pooja Kumari
I tried many ways but nothing works. Sorry this code is messed up but hope you get some idea what I'm trying to do. In views.py @api_view(['GET', 'POST', ]) def signUpPage(request, format=None): #permission_classes = (IsAuthenticated,) #authentication_classes = (TokenAuthentication,)

Can't Load Django Dev Sever

2022-11-10 Thread James
Hello, I can't connect to my django web server and it's all my fault. I turned on SECURE_HSTS_SECONDS to 60 by accident in development, in another project, a few days ago. Now I can not load http://127.0.0.1:8000 on FireFox and I don't know how to fix it. And yes runserver is set to that

RE: Can't Load Django Dev Sever

2022-11-10 Thread Mike Dewhirst
Try visiting http://localhost:8000 insteadNo guarantees and I'm not going to test it myself ;-)--(Unsigned mail from my phone) Original message From: James Date: 11/11/22 16:13 (GMT+10:00) To: Django users Subject: Can't Load Django Dev Sever Hello,I can't connect to my

Re: Page Integration

2022-11-10 Thread Mh Raffi
In views.py on that def On Fri, Nov 11, 2022, 12:37 AM Pooja Kumari wrote: > Where I have to use save() method? In models or somewhere else? > > On Thu, Nov 10, 2022, 9:19 PM Lakshyaraj Dash < > dashlakshyaraj2...@gmail.com> wrote: > >> Please see that if you're calling the .save() method or