Take a look at your urls.py from django.conf.urls import patterns, include, url from klasse.views import portal, kundendaten urlpatterns = patterns('', (r'^portal1/$', portal1), (r'^kundendaten1/$', kundendaten1) )
this means next : next urls are served : portal1/<something or empty > and kundendaten1/<something or empty> Take a look at https://docs.djangoproject.com/en/dev/topics/http/urls/ Also if it you would like to serve ^kundendaten1 try to add next line : (r'^kundendaten1', kundendaten1) 2012/11/9 Nebros <markuschri te...@gmail.com>: > And there are mor problems in the code... i marked it with: > #and the problem i have there... > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/django-users/-/zCCvQ1J8NaUJ. > > To post to this group, send email to django-users@googlegroups.com. > To unsubscribe from this group, send email to > django-users+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/django-users?hl=en. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.