Re:

2020-03-20 Thread Mohammad yunus
Thx On Tue, 24 Dec 2019, 6:50 pm V.K. Vanama, wrote: > The following steps are useful on Microsoft Windows Platform, I am using > Microsoft Windows 10 64-bit > > Step 1: Create a django project either through command line interface or > through any IDE such as JetBrains PyCharm, Atom, etc... >

Re: How to migrate Django site from MySQL database to Postgres?

2019-11-23 Thread Mohammad yunus
Is this "migration" command will work for all type of databases or just only for sqllite3? On Sun, 24 Nov 2019, 9:12 am Ram, wrote: > Hi Carlos, > > If you get to see my email, could you review my plan and let me know > whether my plan works for migration. > > 1. I have setup new Ubuntu 18.04

Re: Django jobs available

2019-11-18 Thread Mohammad yunus
What if I am Freshers? On Mon, 18 Nov 2019, 1:25 pm Jani Tiainen, wrote: > > If you are an experienced software developer looking for new challenges - > this could be your opportunity! > > > > Keypro is internationally growing company specialized in network > information management systems and

Re: Help with manage.py help

2019-11-02 Thread Mohammad yunus
If u type "python manage.py help" it will work..if u type only"manage.py hello" it will show error...I think it's version problem,,can u tell us what u want to do On Sun, 3 Nov 2019, 3:41 am Matías V, wrote: > I use python manage.py help and workt, but i dont understand why > > > l sábado, 2

[no subject]

2019-11-01 Thread Mohammad yunus
Can anyone tell me about how to set mysql database connection,and also tell me requirements for this steps,. Can someone tell me which database is good for Django framework .I know about default database sqlite (is it good for it) -- You received this message because you are subscribed to

Re: Server does not see any apps

2019-11-01 Thread Mohammad yunus
See ur settings.py file and see inside the installed_app['Meow'] On Fri, 1 Nov 2019, 5:19 pm Nijo Joseph, wrote: > What about the settings.py? i think u forgot to include Miaow in the i > INSTALLED_APPS = [ > 'Miaow', > ] > > On Tuesday, October 22, 2019 at 3:37:42 AM UTC+5:30, Кирилл

[no subject]

2019-10-29 Thread Mohammad yunus
Can anyone tell me how to connect mysql database.. with step by step? -- 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

Re: django server not runing

2019-10-17 Thread Mohammad yunus
Seperate your URL file with "," or remove "name" On Fri, 18 Oct 2019, 7:52 am wd, wrote: > The error is pretty clear ... > > [image: image.png] > > May be it should be path('', views.first_view, name='first_view') ? > > On Fri, Oct 18, 2019 at 4:41 AM Muhamed Bešić > wrote: > >> >> -- >> You

Re: Keyring with Django

2019-10-15 Thread Mohammad yunus
What is this keyring? On Sat, 12 Oct 2019, 12:35 pm Tumbelo, wrote: > Hi, > > I need to store some third party server passwords in Django, in views.py > to be more specific. Those are used for Paramiko SFTP (machine-to-machine > communication) and it's not possible to use keys instead of

Re: page redirecting only home page

2019-10-12 Thread Mohammad yunus
In URL('empty') Convert it into URL(r^'$',your view) On Sat, 12 Oct 2019, 8:06 pm lemme smash, wrote: > why you have type="button" on anchor?) > > On Saturday, October 12, 2019 at 7:07:48 AM UTC+3, narendra thapa wrote: >> >> i have two template load_page.html and ask_questions.html while i am

Re: FK forms in a Single CreateView

2019-10-10 Thread Mohammad yunus
What is mean FK Shaziya On Thu, 10 Oct 2019, 9:19 pm Shazia Nusrat, wrote: > Hi I have a situation to manage multiple models with FK for a single > CreateView. > > Can someone give me a solution for the below. > > class Client(models.Model): > name = models.CharField(max_length=100) >