If there is a painless way of runtime urlconf modifications? e.g. based on database records?
Bruteforce soluttion:
r('^(.*)/', handmade_router_function)
is too brutal for me :)
Thanks in advance!
UPD: I understand that i can directly modify urlpatterns from my code, but it is requires a lot of hand-coding (custom admin-save actions, delete handlers etc). and i want to figure out if there is a ready to use app/library :)