5
śledzę samouczek youtube, i otrzymuję błąd ...żądana URL nie został odnaleziony na tym serwerze django
otrzymuję błąd
The requested URL /hello was not found on this server.
site/urls.py
urlpatterns = patterns('',
url(r'^hello/$', article.views.hello),
...
)
artykuł/views.py
from django.shortcuts import render
from django.http import HttpResponse
def hello(request):
name = 'mike'
html = '<html><body> sup %s </body></html> ' %name
return HttpRequest(html)
site/settings.py
INSTALLED_APPS = (
...
'article',
)
Wciąż otrzymuję błąd! – bezzoon
Wow. localhost/hello było problemem .. Mam używać localhost: 8000/hello .... aaahhh – bezzoon