Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-14 Thread Test Bot
Okay so there is no need to go to different websites if you want to install a Python module. You will find almost everything related to Python modules in pypi.org, it includes everything like installation instructions, gut repo for the packages etc On Wed, May 15, 2019, 11:57 AM Balaji Shetty wro

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-14 Thread Balaji Shetty
Hi Julio Cojom Thank You very much for your reply. Can you please provide me the web link for necessary package installation and steps also. I have been trying since 4 hour and tried all the option for select2 from different web sites still could not get success. I will really appreciate if you do

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-14 Thread Julio Cojom
Hi, I used a package exclusive for admin, it call django-select2-admin and it's magic. Only register in installed apps and that's all. Regards. El mar., 14 de may. de 2019 11:12 p. m., Balaji Shetty < balajishe...@gmail.com> escribió: > Hi > > I need Cascading drop down list in Django Admin GUI.

Can Anyone Please Provide djago-select2 Documentation

2019-05-14 Thread Balaji Shetty
Hi I need Cascading drop down list in Django Admin GUI. I have bee trying to use Django-select2 but i am not getting the desired output. ( Example Select Continents, select respective Country under Continent ) Can Anyone Please Provide djago-select2 Documentation or any other simple alternative.

Re: How to reengage pycharm command line to run >'py manage.py migrate'?

2019-05-14 Thread Joseph Jones
Joe, Thank you for letting me know how to open up an additional terminal I did so and was able to run 'mange.py migrate'. Joseph On Tue, May 14, 2019 at 1:36 PM Joe Reitman wrote: > Open up another terminal by clicking the '+' sign. > > On Tuesday, May 14, 2019 at 12:31:32 PM UTC-5, jos.jwj wrot

Re: Redirect

2019-05-14 Thread Victor H. Velasquez Rizo
What I sent was just assuming that the user already meet the requirements youn describe. Share the code that you have so far and we can work base on it.! On Tue, May 14, 2019 at 3:55 PM Soumen Khatua wrote: > Thanks for your help. But it should be redirect to these custom page if > and only if

mod_wsgi picking up wrong settings

2019-05-14 Thread Brad Rice
I have multiple websites setup on a linode cloud. I am using Virtual Host containers with WSGI paths and Virtual Envs for each app. When I set any of the apps to Debug = False, they throw 500 errors. It appears they are using the same wsgi environment settings because the error is ALLOWED_HOSTS

Re: Redirect

2019-05-14 Thread Soumen Khatua
Thanks for your help. But it should be redirect to these custom page if and only if I'll click login button and at the same time it should not redirect to custom page if it is coming by loginrequired functionality. Can you share me the code, please if it is possible. Thank you once again. On

Re: Redirect

2019-05-14 Thread Victor H. Velasquez Rizo
*Hi Soumen.* your are trying to re-direct an user to a customized url. To do that you need to create an URL that receive the name as an argument. *urls.py* path('url/', view, name='view_name'), *View.py* *from *django.shortcuts* import *redirect return redirect('app:view_name', user_name=userNa

Re: How to reengage pycharm command line to run >'py manage.py migrate'?

2019-05-14 Thread Joe Reitman
Open up another terminal by clicking the '+' sign. On Tuesday, May 14, 2019 at 12:31:32 PM UTC-5, jos.jwj wrote: > > Hello fellow community members, > > I am a fresher working on a project in pycharm on a Lenovo system. > Everything seems to be going as django wold indicate however after running

How to reengage pycharm command line to run >'py manage.py migrate'?

2019-05-14 Thread Joseph Jones
Hello fellow community members, I am a fresher working on a project in pycharm on a Lenovo system. Everything seems to be going as django wold indicate however after running code. c:/users/Joseph/django example-project> py manage.py runserver ...starting development server my command line 'c:/user

Need help with models.ManyToManyField() as it always includes all objects when I click "save and continue editing"

2019-05-14 Thread Onur Seker
Hi, everytime I am selecting only one object from my Product from all my Products available in my Cart. It saves and includes all Products to the model.ManyToManyField(Product) in my Cart model. I dont know what is wrong with my code here. Can somebody help me please? -- You received this me

Re: Redirect

2019-05-14 Thread Andréas Kühne
Hi, You need to add a specific view for that button - so that login form has a specific action that does the login and redirects to that url. That's all you need to do. Regards, Andréas Den tis 14 maj 2019 kl 09:47 skrev Soumen Khatua : > Hi Folks, > Actually after login I want to redirect th

Redirect

2019-05-14 Thread Soumen Khatua
Hi Folks, Actually after login I want to redirect them by their name to a custome page. Assume my name is soumen so my url will be after login: *127.0.0.1:8000/accounts/soumen * But not every time only they will click on particular login button. Please