On Mon, May 11, 2009 at 10:22 PM, Thierry <lamthie...@gmail.com> wrote:

>
> Let's say I have a pet table:
>
> TABLE: Pet
> id     name        type
> ------------------------------
> 1      Pluto        dog
> 2      Foo          cat
> 3      Goo          fish
>
> I can access the pet page of each of the above by the following url:
>
> Pluto: localhost/pets/1/
> Foo:   localhost/pets/2/
> Goo:  localhost/pets/3/
>
> I want the url for the pet page to look like the following:
>
> Pluto: localhost/pets/pluto-dog/
> Foo:   localhost/pets/foo-cat/
> Goo:  localhost/pets/goo-fish/
>
> In a PHP web application that I have been working on before, there is
> an additional field in the Pet table which holds the url for each
> pet.  Is that how it should be done in Django too?
> >
>
Since the urls just contain 2 fields that are both on the model I'd just
hook up the view at

r'^(?P<type>\w+)-(?P<name>\w+)/$'

and then in the view you can filter by type and name individually.

Alex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

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