Please follow the link in my last email
On Tue, 8 Oct 2019, 5:05 pm Felipe Gregório USA,
wrote:
> how i do this?
>
> --
> 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
how i do this?
--
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 view this discussion on the web visit
https://group
nothing wrong ,
you just need to link your view with a route ..
please go for the official django tutorial to understand the basics
https://docs.djangoproject.com/en/2.2/intro/tutorial01/
On Tue, Oct 8, 2019 at 4:36 PM Felipe Gregório USA
wrote:
> Please tell me what is wrong with my fi
Please tell me what is wrong with my first view
https://github.com/Fgregorio1/ftgtraderexample.git
--
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 dj
Hello
First : thanks for your Help. It's very easy, but I need 4 hours...to
understand... don't panic :-!
Have a good day
Le 21/05/2018 à 23:55, Daniel Germano Travieso a écrit :
Hello!
As you configured, the available url patterns you have on your project
are: "/admin/" and "/boutique/"...
Hello!
As you configured, the available url patterns you have on your project are:
"/admin/" and "/boutique/"... And as you request
states, you are trying to access the path "/".. So django didn't
find any matching url pattern for that.
To access the view you are intended to access, you should ac
Hello,
I use tutorial 1.11
beaumarche (startproject)
from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^boutique/', include('boutique.urls')) ,
url(r'^admin/', admin.site.urls),
]
boutique (app)
urls.py
from django.conf.urls import
i used "debug = False" in setting.py, that's why i couldn't see what
the real error is because of the page appearance!
thank you for your attention,
On Jun 6, 5:31 am, Dave Sayer wrote:
> Have you followed the whole of the tutorial?
> On 6 Jun 2011 07:41, "bahare hoseini" wrote:
>
> > hi there,
Have you followed the whole of the tutorial?
On 6 Jun 2011 07:41, "bahare hoseini" wrote:
> hi there,
> i use django vs1.3
> i started editing urls.py to look loke this:
>
> from django.conf.urls.defaults import *
>
>
>
> from django.contrib import admin
>
> admin.autodiscover()
>
>
>
> urlpattern
hi there,
i use django vs1.3
i started editing urls.py to look loke this:
from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
(r'^polls/$', 'polls.views.index'),
(r'^polls/(?P\d+)/$', 'polls.views.detail'),
n HttpResponse(html)
>
> > On Dec 17, 2:13 pm, Christian Joergensen <[EMAIL PROTECTED]> wrote:
> > > newDjangoer wrote:
> > > > Hello,
>
> > > > I am a new user to Django and developing apps at that. I ran the
> > > > server succes
ime.datetime.now()
> html = :It is now %s." % now
> return HttpResponse(html)
>
> On Dec 17, 2:13 pm, Christian Joergensen <[EMAIL PROTECTED]> wrote:
> > newDjangoer wrote:
> > > Hello,
> >
> > > I am a new user to Django and develop
]> wrote:
> newDjangoer wrote:
> > Hello,
>
> > I am a new user to Django and developing apps at that. I ran the
> > server successfully . Once I created the "First View" tutorial
> > (datetime page17) in the book and changed the settings.py and urls.py,
>
newDjangoer wrote:
> Hello,
>
> I am a new user to Django and developing apps at that. I ran the
> server successfully . Once I created the "First View" tutorial
> (datetime page17) in the book and changed the settings.py and urls.py,
> I get the followi
Hello,
I am a new user to Django and developing apps at that. I ran the
server successfully . Once I created the "First View" tutorial
(datetime page17) in the book and changed the settings.py and urls.py,
I get the following:
Request Method: GET
Request URL:http://127.0.0.1:8000/
Alan Bailey wrote:
> ImportError at /unixgroups/34/ No module named group
>
> Here is urls.py:
> from django.conf.urls.defaults import *
>
> urlpatterns = patterns('',
> # Example:
> # (r'^djaccounts/', include('djaccounts.apps.foo.urls.foo')),
>
> # Uncomment this for admin:
>
Hi there,
New user, I'm going through the tutorial, except with our current database
that we have here (so instead of the 'polls' app I'm making something
similar to what we already have). Everything's fine up to a point, but
now I am creating a public view (tutorial3) and it can't find the
modu
17 matches
Mail list logo