Hi folks. Suppose I've got urls on my site which look like /qwe/asd/zxc/wer/sdf/xcv/ (unknown number of \w+ blocks separated by slashes).
Is that possible? to construct a urlpattern to catch those urls so that:
- a view function would get all those \w+ strings in *args list to it
- the {% url qwe asd zxc wer sdf xcv %} templatetag would reconstruct supposed /qwe/asd/zxc/wer/sdf/xcv/ url the right way
Thanks