Re: Problem: django url Admin/ is autmatically coverted to admin/

2018-08-25 Thread Jason
if you have your urls file like urlpatterns = [ path('admin/', admin.site.urls),] that sends everything with the url somesite.com/admin to the django admin. either remove the django admin app and replace with your own, or use a different path -- You received this message because you ar

Problem: django url Admin/ is autmatically coverted to admin/

2018-08-25 Thread Devender Kumar
i have separate Admin app and using admin also but when I am accessing Admin/trips is accessed and Admin is not accessed -- 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 e

Re: django website hosting

2018-08-25 Thread ireoluwa fakeye
You can host on devices like python anywhere On Sat, 25 Aug 2018, 15:36 ERICK OMONDI AYARA, wrote: > I would like to host a django project onto a web domain but cant seem to > get around it. i cant also find the python setup on the SOFTWARE section of > my file manager. Is there a way to do th

django website hosting

2018-08-25 Thread ERICK OMONDI AYARA
I would like to host a django project onto a web domain but cant seem to get around it. i cant also find the python setup on the SOFTWARE section of my file manager. Is there a way to do this? Thanks -- You received this message because you are subscribed to the Google Groups "Django users" gr

Re: Excel formula values

2018-08-25 Thread Ravi Shankar
Hi Phako Perez, Use the below statement will solve your problem. Sheet5.Range("B1").Value or Sheet5.Range("B" & i).Value, i as an variable. On Sat, 25 Aug 2018 at 06:43, Phako Perez <13.phak...@gmail.com> wrote: > Hi everyone, > > I’m trying to get data from an excel file. > Every thing goes fi

Re: Excel formula values

2018-08-25 Thread Jason
again, this is an openpyxl/excel issue, not a django issue. you're asking in the wrong place, since this doesn't have anything to do with django at all. On Friday, August 24, 2018 at 10:17:13 PM UTC-4, Phako Perez wrote: > > Actually what I need is to print the values from an excel on a table,

Re: TypeError: view must be a callable or a list/tuple in the case of include().

2018-08-25 Thread ansh srivastav
Use the following in urls.py: from django.conf.urls import include,url On Sat, Aug 25, 2018 at 12:54 PM Aware Fun wrote: > > > rahul > > On Fri, Aug 24, 2018, 3:17 AM herve kabore wrote: > >> this is the urls.py >> >> >> from django.conf.urls import include,url >> from django.contrib impor

Re: Update the django project from local to production

2018-08-25 Thread Aware Fun
Install POSTGRESQL database for production.In django sqlite is build in database and only use for local. rahul On Sat, Aug 25, 2018, 3:04 PM Kamal Sharma wrote: > Hey, > How i have deployed my django project to my VPS and now i have done some > change in my local django project and want to upda

Update the django project from local to production

2018-08-25 Thread Kamal Sharma
Hey, How i have deployed my django project to my VPS and now i have done some change in my local django project and want to update on production server. How can i do that.? please help me Thanks Kamal Sharma -- You received this message because you are subscribed to the Google Groups "Django us

Re: TypeError: view must be a callable or a list/tuple in the case of include().

2018-08-25 Thread Aware Fun
rahul On Fri, Aug 24, 2018, 3:17 AM herve kabore wrote: > this is the urls.py > > > from django.conf.urls import include,url > from django.contrib import admin > > urlpatterns = [ > url(r'^admin/', include(admin.site.urls)), > > url(r'^$', 'blog.views.home', name='home'), > ] > > > this

Re: TypeError: view must be a callable or a list/tuple in the case of include().

2018-08-25 Thread Glen D souza
url(r'^$', 'blog.views.home', name='home') You are passing a string as view by quoting blog.views.home remove the quotes and try, i.e url(r'^$', blog.views.home, name='home') On Fri, 24 Aug 2018 at 03:17, herve kabore wrote: > this is the urls.py > > > from django.conf.urls import url > fro