That depends on the type of breadcrumbs you are looking for. If
you're looking for the type that shows the user where they were last,
then you're better off just letting the browser do it's job with the
back button.
If you're looking for the concept of a container of the current path,
and all of it's parent containers, then your path should hopefully be
all you need for the bread crumbs, for instance, on
/blogs/a-better-kind-of-angry hopefully the breadcrumbs are / (home)
> /blogs (blogs) > /blogs/a-better-kind-of-angry (A better kind of
angry).
In that case, just use request.path_info.split("/").
If that's not what you're looking for, then you'll have to do a better
job of explaining what you are looking fore before we can answer your
question.
Lakin