I'm trying to add a relative link in the "Edit profile" page that takes the user to his or her photos page, as a more logical way to add pictures to one's profile, but I'm stuck in making "$username" resolve.
Ive added these without any luck:
<div class="uploadpics"><a href="/photo/userphotos/$username">Upload / Edit photos</a> </div>
also tried this (found online somewhere):
<div class="uploadpics"><a href="{url_for_route for="base_user_profile:[username=>`$username`]"}">Upload / Edit photos</a> </div>
Thanks