Re: Any open source project for beginner to start with ?

2019-05-15 Thread Joe Reitman
Do you have your website available to see on github? On Wednesday, May 15, 2019 at 3:44:30 PM UTC-5, himanshu chouhan wrote: > > Hi All, > > I know this ppl discuss really important issue here, I'm trying my luck in > django, if anyone could suggest me any open-source project to start with or >

Re: Any open source project for beginner to start with ?

2019-05-15 Thread Sam Taiwo
Hi, If you believe you are ready for open-source contribution, a good start would be just contributing back to Django. https://code.djangoproject.com/query?status=!closed=1=Accepted=priority Here you can find "easy" ways to contribute. If you don't feel like you are still up to the task, then

Any open source project for beginner to start with ?

2019-05-15 Thread himanshu chouhan
Hi All, I know this ppl discuss really important issue here, I'm trying my luck in django, if anyone could suggest me any open-source project to start with or else if anyone is open to collaboration with their project, please do tell I have built a fully functional django + bootstrap website

Re: Email Django app.

2019-05-15 Thread Marvelous Ikechi
Thank you Kumar. I used that. On 11:36AM, Mon, May 13, 2019 Devender Kumar wrote: > Till now I only know about one thing is that is sending emails not about > how you will be going to read them but I have suggestion for this also. For > sending email you need to configure smtp/email in your

[no subject]

2019-05-15 Thread Marvelous Ikechi
Hello guys, I'm trying to write to my settings.py file from the data I received from my form, but it isn't recognizing the form fields I declared. Say for instance, my form is: Class MessageForm(forms.form): sender = forms.EmailField() password = forms.CharField() and I imported

Re: Can't save to Postgres db locally - Fresher

2019-05-15 Thread Emmanuel klutse
Thanks Chetan Ganji, well appreciated. H, I changed the method name but problem still persist. I have tried all I can to handle the new errors but failed again. When I changed the contact here to contacts "c = contact(email='email',subject='subject',message='message’)" NameError at

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 Thread Balaji Shetty
*Hi Julio Cojom,* *Sorry .* *I request , please do this favour on me. I have been searching from morning but could not get any success.* *Please run zip file and see the mistake and let me know please.* *I will be thankful.* *I followed the instructions and I successfully installed

Re: Can't save to Postgres db locally - Fresher

2019-05-15 Thread salimon jamiu olashile
You’re passing a string instead of a variable. c = contact(email=email,subject=subject,message=message) On Wed, 15 May 2019 at 4:33 PM, Chetan Ganji wrote: > *Problem - * > def *contact*(request): > .. > c = *contact*(email='email',subject='subject',message='message') >

Re: Run django in apache2.4+centos7.5+python2.7

2019-05-15 Thread Chetan Ganji
This might help you. https://bitnami.com/stack/django/installer Regards, Chetan Ganji +91-900-483-4183 ganji.che...@gmail.com http://ryucoder.in On Wed, May 15, 2019 at 9:13 PM Kurosh Sol wrote: > Hi, > I would like to ask a question about django setup > Please if you can help me > I use

Re: Help on architecture of User layout configuration system

2019-05-15 Thread Chetan Ganji
This one is interesting. I was also looking for the solution of the same problem. If I understand correctly, the problem with forms is - User can choose the name of the field and the type of the fields e.g. IntegerField(). FloatField(), etc. Kind of a form that is generated using a form :P More

Run django in apache2.4+centos7.5+python2.7

2019-05-15 Thread Kurosh Sol
Hi, I would like to ask a question about django setup Please if you can help me I use dedicate server from inmotion hosting .com With apache 2.4 (cpanel) I have easy_apach4 in my whm I install python 3 and i have python 2.7 in my server and when i commend django in python terminal I get

Re: Can't save to Postgres db locally - Fresher

2019-05-15 Thread Chetan Ganji
*Problem - * def *contact*(request): .. c = *contact*(email='email',subject='subject',message='message') .. The two methods that should be doing two separate things have the same name. So, the python interpreter is confused. *Solution - * Rename anyone of the above

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 Thread Julio Cojom
Hi again, The package is this : pip install django-admin-select2 It didn't have docs, just the git page (django-admin-select2 ) with a readme, its really easy, does all you need but you cant customize. Regards. El mié., 15 may. 2019 a las 2:53,

Re: django manage.py will not work

2019-05-15 Thread MortaL TV
install python3 -- 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 post to this group, send email to

Re: django manage.py will not work

2019-05-15 Thread Anirudh Jain
You are probably not using virtual environment. Send snapshot of the error would help clarifying though. On Wed, 15 May 2019, 18:01 Emmanuel Simeon, wrote: > Are you having Multiple Version of Python Installed on Your System > > > On Wednesday, May 15, 2019 at 1:23:13 PM UTC+1, Ishant Agrawal

Re: django manage.py will not work

2019-05-15 Thread Emmanuel Simeon
Are you having Multiple Version of Python Installed on Your System On Wednesday, May 15, 2019 at 1:23:13 PM UTC+1, Ishant Agrawal wrote: > > manage.py will not work how we handle this issue > -- You received this message because you are subscribed to the Google Groups "Django users" group. To

Re: django manage.py will not work

2019-05-15 Thread Vivek Jha
Send the snap On Wed, 15 May 2019, 17:52 Ishant Agrawal, wrote: > manage.py will not work how we handle this issue > > -- > 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

django manage.py will not work

2019-05-15 Thread Ishant Agrawal
manage.py will not work how we handle this issue -- 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 post to this

Re: How to make Django Project Mobile Compatible

2019-05-15 Thread Sagar Gurung
Sorry for this but are you related to Shilpa Shetty (BW Actress)? :) On Wed, May 15, 2019 at 1:00 PM arun ashok wrote: > Boostrapping > > On Saturday, May 11, 2019 at 12:35:15 PM UTC+5:30, Balaji Shetty wrote: >> >> Hi >> >> How can i make my Django Project view Mobile Compatible. >> Should i

Re: How to make Django Project Mobile Compatible

2019-05-15 Thread arun ashok
Boostrapping On Saturday, May 11, 2019 at 12:35:15 PM UTC+5:30, Balaji Shetty wrote: > > Hi > > How can i make my Django Project view Mobile Compatible. > Should i use Angular JS / React . Please let me know. > > Thanks in Advance > > -- > > > *Mr. Shetty Balaji S.Asst. ProfessorDepartment of

Re: Django issue with NoModuleError

2019-05-15 Thread arun ashok
before answering,leme know whether your INSTALLED_APPS list is in the correct syntax,i cant see a closing bracket there On Monday, May 13, 2019 at 12:45:35 PM UTC+5:30, ukeplayer01 wrote: > > Hi Everyone. > I have been away from Django for the past 18 months and am refreshing to > use it for a

Re: How to create a login form with two more forms in it

2019-05-15 Thread arun ashok
https://www.codementor.io/lakshminp/handling-multiple-forms-on-the-same-page-in-django-fv89t2s3j this will get you some idea about loading multiple forms in a temlate.If you want to hide the forms related to button click,add the forms in different div's,use java script to hide or display the

Re: HOSTING DJANGO

2019-05-15 Thread arun ashok
Try Heroku or AWS free service On Monday, May 13, 2019 at 5:04:15 PM UTC+5:30, Isaac Imafidon wrote: > > Please have anyone here hosted django site using namecheap ? I want to > know how he or she did it. > -- You received this message because you are subscribed to the Google Groups "Django

good upload widget?

2019-05-15 Thread Mirek Zvolsky
For py3/dj2 I need to choose an upload widget (ie. something what I can use easy with widget=...). At this time for standard documents, not neccessary for pictures (but it could be fine too). Only one thing is absolutely important for now: attachet files must stay after submit+failed

Can't save to Postgres db locally - Fresher

2019-05-15 Thread Emmanuel klutse
Hello Team, I need help please, I’m try to save to my db from a FORM using the command below. I’ve all I could but the process keeps failing and I’m stack. File "/Users/emmanuelklutse/Documents/djangodev/myPortfolio/emmanuel/views.py", l ine 17, in contact c =

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 Thread Balaji Shetty
Correction in Previus Model *class Location(models.Model):continent = models.ForeignKey(Continent,on_delete=models.CASCADE)country = models.ForeignKey(Country,on_delete=models.CASCADE)city = models.CharField(max_length=50)street = models.CharField(max_length=100)def

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 Thread Balaji Shetty
Thank once again. I followed the instruction but i am not getting any changes. Can you please see the error. models.py *from django.db import models# from django import forms# from django_select2.forms import ModelSelect2MultipleWidgetclass Continent(models.Model):

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 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

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 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

Re: Can Anyone Please Provide djago-select2 Documentation

2019-05-15 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