2014-08-12 21:45:33 +00:00
|
|
|
$newline always
|
2014-08-15 11:25:33 +00:00
|
|
|
<h3>Profile of #{ownerName}
|
2014-08-12 21:45:33 +00:00
|
|
|
|
2014-08-17 20:58:33 +00:00
|
|
|
$if null userAlbs
|
2014-08-15 11:25:33 +00:00
|
|
|
This user has no albums yet
|
|
|
|
$else
|
|
|
|
Albums of this user:
|
2014-08-17 20:58:33 +00:00
|
|
|
$forall (Entity albumId album) <- userAlbs
|
2014-08-15 11:25:33 +00:00
|
|
|
<div class="thumbnails">
|
2014-08-17 20:58:33 +00:00
|
|
|
<a href=@{AlbumR user albumId}>
|
|
|
|
<img width="200px" src="/static/img/album.jpg"><br>
|
|
|
|
#{albumTitle album}
|
2014-08-12 21:45:33 +00:00
|
|
|
|
2014-08-15 11:25:33 +00:00
|
|
|
$if null recentMedia
|
|
|
|
This user has not uploaded any images
|
2014-08-12 21:45:33 +00:00
|
|
|
$else
|
2014-08-15 11:25:33 +00:00
|
|
|
Newest images:
|
|
|
|
$forall (Entity mediaId medium) <- take 10 recentMedia
|
2014-08-12 21:45:33 +00:00
|
|
|
<div class="thumbnails">
|
2014-08-15 11:25:33 +00:00
|
|
|
<img src=#{mediumPath medium}>
|