forked from retoor/snek
- In message.html template, moved the avatar `<img>` inside an `<a>` tag to make the user avatar clickable, linking to the user's profile page. - In user.py view, changed `get()` to extract `user_uid` from request match_info and fetch the user record via `self.services.user.get(uid=user_uid)` instead of relying on `self.request['user']`, passing the uid to the template context.