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
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
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
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
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
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,
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
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
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
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
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
11 matches
Mail list logo