Re: How to run django server locally, if there are multiple settings file in Django Project. if the repo is cloned from Office work space to local(newly hired as intern) (no requirements.txt)

2020-04-21 Thread chaitanya orakala
Thanks, I will definitely look into it. On Tue, Apr 21, 2020 at 5:13 PM ELMER IBAYAN wrote: > Hi Chaitan, > > After some googling around, i found this article which I believe would > help you. > > https://simpleisbetterthancomplex.com/tips/2017/07/03/django-tip-20-working-with-multiple-settings-

Re: How to clone or run your project on local machine by cloning/connecting to Linode Server. what are requirements need to be installed on your Machine.

2020-05-14 Thread chaitanya orakala
Yes, You are correct. It has nothing to do with the server when I cloned it from Git. I did follow your Process but the Django app consists of multiple settings files for Production, Development, and Test. I configured my own settings file and try to run the command Python manage.py runserver --se

Re: PROBLEM WITH Multiple SETTINGS.PY FILE

2020-05-16 Thread chaitanya orakala
Yes Jorge, all the settings file are in the same folder On Sat, May 16, 2020 at 5:20 PM Jorge Gimeno wrote: > > > On Sat, May 16, 2020 at 1:52 PM chaitan wrote: > >> Hi, I am facing ModuleNotFoundError in my Django application. It got >> configured with multiple settings files for production,

Re: PROBLEM WITH Multiple SETTINGS.PY FILE

2020-05-16 Thread chaitanya orakala
Do you have any idea why i am getting this error? On Sat, May 16, 2020 at 6:40 PM chaitanya orakala wrote: > Yes Jorge, all the settings file are in the same folder > > > On Sat, May 16, 2020 at 5:20 PM Jorge Gimeno wrote: > >> >> >> On Sat, May 16, 2020 at 1:5

Re: PROBLEM WITH Multiple SETTINGS.PY FILE

2020-05-18 Thread chaitanya orakala
thon can find the module that way. If Python does, then all of > the imports in that file need to be changed. > > If that's not the case, then we need to see what the directory structure > looks like to figure this out. > > -Jorge > > On Sat, May 16, 2020 at 4:04 PM c

Re: PROBLEM WITH Multiple SETTINGS.PY FILE

2020-05-18 Thread chaitanya orakala
hey could anyone help with this? On Mon, May 18, 2020 at 2:44 PM chaitanya orakala wrote: > Hi Jorge, > I tried placing a dot in front of settings_dev_sai, it didn't work. by the > way, I am using Python 2.7 and Django 1.10 versions. > [image: image.png] > this is my proj

Re: PROBLEM WITH Multiple SETTINGS.PY FILE

2020-05-18 Thread chaitanya orakala
I tried that way, sir. but it's of no use. I don't know how to resolve this issue. its been troubling me for 3 days now On Mon, May 18, 2020 at 9:29 PM Mike Dewhirst wrote: > On 19/05/2020 11:10 am, chaitanya orakala wrote: > > I am using Python 2.7 > > It is possible y

Re: PROBLEM WITH Multiple SETTINGS.PY FILE

2020-05-19 Thread chaitanya orakala
> multiple settings files. Maybe it will help: > https://simpleisbetterthancomplex.com/tips/2017/07/03/django-tip-20-working-with-multiple-settings-modules.html > > I hope this helps! > > -Jorge > > On Mon, May 18, 2020 at 6:51 PM chaitanya orakala < > chaitu.orak...@

Re: Can you help me out?

2020-05-20 Thread chaitanya orakala
Hi Meera, Please go through this link, it might help you https://chatterbot.readthedocs.io/en/stable/django/ how ever if you are ok with third-party applications, you can choose Zendesk or Drift. Thank You On Wed, May 20, 2020 at 11:19 AM meera gangani wrote: > I create a chatroom in django >

Re: How to invoke Sub Form which have MULTIPLE OPTIONS to choose inside Django Form.

2020-05-20 Thread chaitanya orakala
Thank you for your response. I see some javascript inside the form. I am not fully aware of it. is there any template which I can use in forms?? On Thu, May 21, 2020 at 1:22 AM Vishesh Mangla wrote: > #template > > > Volvo > Saab > Opel > Audi > > > > > > > > > > > > > > > > > > >

Re: How to invoke Sub Form which have MULTIPLE OPTIONS to choose inside Django Form.

2020-05-21 Thread chaitanya orakala
ck,name,email) * > widgets = { 'pack':forms.radioselect() } > > > > > On Thu, 21 May 2020 at 11:19, chaitanya orakala > wrote: > >> Thank you for your response. I see some javascript inside the form. I am >> not fully aware of it. is there any templat

Re: How to invoke Sub Form which have MULTIPLE OPTIONS to choose inside Django Form.

2020-05-22 Thread chaitanya orakala
Hello Djangians, I have a select drop-down list in a form. whenever I will select an option, it should pop-up a list containing information about the package. Please suggest how to achieve this. Thank You On Thu, May 21, 2020 at 2:59 AM chaitanya orakala wrote: > wow... thanks Devansh.

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-07 Thread chaitanya orakala
Thanks for the response guys. I see many of them are saying need to use javascript or jquery. Is there any reference links to achieve that? ? On Sun, Jun 7, 2020 at 10:00 AM Shyam Acharjya wrote: > hi AMINE AZIZ. for frontend what approach should be taken? > thnx > > On Sunday, June 7, 2020 at

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-07 Thread chaitanya orakala
*sure, here is my code*. please let me know how can I modify this to achieve a dependent drop fields. I want it to make action on executive_authority, next fields should pop-up *Views.py* from django.shortcuts import render, redirect from er_form.forms import NewClientForm, BillingGroupForm f

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-07 Thread chaitanya orakala
Can anyone suggest how to approch this??? On Sun., Jun. 7, 2020, 12:09 p.m. chaitanya orakala, < chaitu.orak...@gmail.com> wrote: > *sure, here is my code*. please let me know how can I modify this to > achieve a dependent drop fields. > I want it to make action on executive_

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-08 Thread chaitanya orakala
Thank You, Amine Aziz. I tried jquery and it worked. its so simple once we know jquery. do help others like you did to me. On Sun, Jun 7, 2020 at 1:18 PM AMINE AZIZ wrote: > I will share with you my iwn code used in admin , but it still the same as > the front end > > withe jQuery i can show inp

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-09 Thread chaitanya orakala
sure, I will do it by tomorrow On Tue, Jun 9, 2020 at 2:35 AM Balaji Shetty wrote: > Nice > > Can you please share sample code on git link. > > This is very common requirement in every project > > > > On Tuesday, June 9, 2020, chaitanya orakala > wrote: >

Re: Two models one form, or use generic CreateView

2020-06-09 Thread chaitanya orakala
Hi Sha, I like your template CSS styling and formatting. Could you please post your index HTML and CSS style if you don't mind. Thanks in Advance On Tue, Jun 9, 2020 at 4:18 PM Yamen Gamal Eldin wrote: > It's pretty straight forward, just search about overload save function for > update view, th

Re: Best Django Rest Framework Tutorial??????

2020-06-10 Thread chaitanya orakala
can anyone please respond ?? On Wed, Jun 10, 2020 at 9:51 AM Sai wrote: > Hi djangoians, > I want to learn django rest framework, may i please know which is best > resource in online market or any youtube links or udemy courses??? > > Thanks in advance. > > -- > You received this message

Re: Best Django Rest Framework Tutorial??????

2020-06-10 Thread chaitanya orakala
Thank you jacklin On Wed, Jun 10, 2020 at 3:00 PM Jack Lin wrote: > DOCUMENTATION > > > 在 2020年6月11日 於 上午2:58:42, chaitanya orakala (chaitu.orak...@gmail.com) 寫下: > > can anyone please respond ?? > > On Wed, Jun 10, 2020 at 9:51 AM Sai wrote: > >>

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-10 Thread chaitanya orakala
.hide(); $('#id_exec_fax, label[for="id_exec_fax"]').hide(); }); }); {% csrf_token %} {{ client_form.as_p }} {{ billing_form.as_p }} Submit {% endblock content %} > >

Re: Best Django Rest Framework Tutorial??????

2020-06-10 Thread chaitanya orakala
which is best among all those channels ? On Wed, Jun 10, 2020 at 3:59 PM cosmos multi wrote: > on youtube there are very good > > El mié., 10 jun. 2020 a las 14:40, chaitanya orakala (< > chaitu.orak...@gmail.com>) escribió: > >> Thank you jacklin >> >>

Re: Best Django Rest Framework Tutorial??????

2020-06-12 Thread chaitanya orakala
m/watch?v=XMu0T6L2KRQ >> >> On Thu, 11 Jun 2020 at 15:04, Mohamed SAMAKE >> wrote: >> >>> https://agiliq.com/blog/2019/04/drf-polls/ >>> >>> Le mer. 10 juin 2020 à 20:07, chaitanya orakala < >>> chaitu.orak...@gmail.com> a écrit :

Re: Django forms

2020-06-17 Thread chaitanya orakala
Hi Obed, You can use django model forms, where modelform will access your fields in model and you play with it using widgets. Hope this helps. Thank You On Tue, Jun 16, 2020 at 5:25 PM Obed Balogun wrote: > Please im trying to create a playlist app such that the user enters songs > in a playlis

Re: python manage.py runserver error

2020-06-18 Thread chaitanya orakala
Hi Thomas, Please run the following commands to solve this problem, before running the server. python manage.py makemigrations python manage.py migrate and then command python manage.py runserver Hope this helps. Let me know if you have any questions On Thu, Jun 18, 2020 at 6:15 PM Thomas Furta

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-19 Thread chaitanya orakala
Hi guys, I made a video on how to solve this problem. here is the Link https://youtu.be/XvX6Q64oFyw On Wed, Jun 10, 2020 at 3:50 PM chaitanya orakala wrote: > Answer : > > *First hide the necessary fields which you want to hide and pop in drop > down.* > style.css > >

Re: How to get Dependent Dropdown Feilds in Django ModelForms. Please answer : Important

2020-06-19 Thread chaitanya orakala
Hi guys, I made a video on how to solve this problem. Please go to the link below and subscribe for more content. https://youtu.be/XvX6Q64oFyw There is a git repo link in the description as well. Thank You On Wed, Jun 10, 2020 at 3:50 PM chaitanya orakala wrote: > Answer : > > *F

Re: Collaborators

2020-06-19 Thread chaitanya orakala
Hey John, I had sent an email in interest to this position. Please have a look at it Thanks On Fri, Jun 19, 2020 at 7:52 PM John McClain wrote: > Hello Ali, > > Please contact me via email or skype to discuss the possibilities. > > Cheers, > > John > > On Fri, 19 Jun 2020 at 12:37, Ali Murtuza

Re: Manage.py not working

2020-06-20 Thread chaitanya orakala
Hi Tanisha, You are in root directory of project which is test1. you just need to change your directory into sub-directory which has same name test1. just do 'ls' command to make sure you have manage.py in that folder. Hope this helps!! On Sat, Jun 20, 2020 at 1:03 PM Vishesh Mangla wrote: >