I have a problem where i have to send two urls of partially same format to different views.
eg. "domain/land/one-brush" will go to views.land(request, id) where id is "one-brush"
and similarly domain/land/one-brush/include/images/dot.jpg will be served statically either by custom view or django static serve.. i prefer static serve.
one thing i have in mind that to write two url patterns one for land// and other for land//anything/will/do. First will redirect to custom url and second one will be served statically..
Any better way would be appreciated.