Given the url http://127.0.0.1:8000/mysite.news.htm
then in urls.py (r'^polls/(?P<name>[a-z.]+)', 'Mysite.polls.views.news'), #displays page properly, but without the graphics (r'^polls/(?P<name>.+)', 'Mysite.polls.views.news'), #displays page with some of the graphics, some of which are badly rendered (r'^polls/(?P<name>.+m)', 'Mysite.polls.views.news'), # displays page properly, but without graphics I can accept that I have not yet found the correct path for graphics in the template file, but how can different regex's find the correct view, but render differently?? How can rendering find the correct .gif file and then display it , but incorrectly?? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

