hi to all,

i have a weird problem with my urls.

my model has a get_absolute_url like this:
   * def get_absolute_url(self):
        return "%s/%s/" %  (self.pub_date.strftime("%Y"), self.slug )*

and the url conf is this one:
 *(r'^(?P<year>\d{4})/(?P<slug>[-\w]+)/$',
'myapp.views.projects.project_detail', ),
*
which works fine... my projects urlconf setup is:
    *(r'^projects/', include('myapp.urls.projects')),

*i set up a form template to add projects without touching the admin
interface which works fine too but when i save and it should direct to
the project detail view it sets up the url in the wrong way.

*return HttpResponseRedirect(new_project.get_absolute_url())

*the return above is in my add function but it redirects from
*http://mysite.com/add/* to *http://mysite.com/add/2009/slug/* which
obviously doesnt work instead of *http://mysite.com/projects/2009/slug/
*which works.

any help?


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to