Re: Django UpdateView and Createview

2018-12-09 Thread Deepak Kumar
On Sunday, December 9, 2018 at 6:21:55 AM UTC+5:30, Ryan Nowakowski wrote: > Take a look at > https://docs.djangoproject.com/en/2.1/topics/class-based-views/generic-editing/ > > > On December 7, 2018 7:09:25 AM CST, Rupam Hazra wrote: > > Hi, > > > I have working in a TaskManagement Sytem wh

Django website

2018-12-09 Thread Abiye Anabraba
Hello am Abiye, Please I want to create a site like nnu.ng any idea no how to go about this?. Thanks -- 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

Direction Distance measure in python code

2018-12-09 Thread Dheeraj Kumar
Hi can any one tell how can i get distance measure in direction wise N3 W4 S8 E4 N5 here n is north, w is west , s is south , e is east , n is north please tell python Django code -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe fr

Re: Direction Distance measure in python code

2018-12-09 Thread PASCUAL Eric
Hi, What are you looking for exactly ? Computing the distance on ground between two points, based on their geographical coordinates ? If yes, this is not related to Django, nor to Python in any way. Google with keywords such as "geographic coordinates distance computation" and you'll get ton

RE: Direction Distance measure in python code

2018-12-09 Thread kennedy kay
What I would do if I were you is separate this distance into longitude and latitude. I am sure you know what I mean by that then use a python library called ‘cartopy’. You can pip install this package: Pip install cartopy OR conda install -c conda-forge cartopy There is another python library f

Re: Django website

2018-12-09 Thread Kasper Laudrup
Hi Abiye, On 09/12/2018 09.01, Abiye Anabraba wrote: Hello am Abiye, Please I want to create a site like nnu.ng any idea no how to go about this?. Thanks Take a look here: https://docs.djangoproject.com/en/2.1/intro/ Kind regards, Kasper Laudrup -- You received this message because you

Re: Django UpdateView and Createview

2018-12-09 Thread Okware Aldo
Ryan's suggestion should give you a starting point. On Sun, Dec 9, 2018 at 3:43 PM Deepak Kumar wrote: > On Sunday, December 9, 2018 at 6:21:55 AM UTC+5:30, Ryan Nowakowski wrote: > > Take a look at > https://docs.djangoproject.com/en/2.1/topics/class-based-views/generic-editing/ > > > > > > On

Re: Issue with Python 3.6 and Django 2.0 App Deployment on Shared Hosting

2018-12-09 Thread Annchen Knodt
Thanks for your response, Corey - this is good to know! I ended up switching to Dreamhost where I had no problems getting up and running with django … turns out bluehost has updated their shared hosting plans to be more restrictive and that seems like that's what was causing my issues. Thanks

Re: Order of migration dependencies when running makemigrations from scratch

2018-12-09 Thread Dakota Hawkins
Hi Simon! Thanks for the information, I'll submit a feature request! I dug through the code a bit and the one thing that concerned me a little was the possibility that sorting might have to account for dependencies between your app's dependencies. For example if app2's migration specified that

Django in Linux set image

2018-12-09 Thread pujiarahman
Hi all, i have instaled django in ubuntu, i have image and i put in folder (*img*), the locate is blog urls.py views.py admin.py --static -- blog -dist ---*img* When i load my browser The image is fin

Re: Order of migration dependencies when running makemigrations from scratch

2018-12-09 Thread Simon Charette
Hello Dakota, >From looking at the autodetector code in charge of generating these lists[0] and the loader code in charge of resolving them[1][2] I'm pretty confident their order doesn't carry any meaning. They should have been defined as a set from the beginning. Cheers, Simon [0] https://gi