[Answer]-How to modify the link to access user profile?

1👍

You might want to try it like that:

url(r'^%s/(.*)/$' % _('users'), app.users.user_profile, name='user_profile'),

And if you use tranlsations, do not forget to adapt these as well.

Leave a comment