Show followers' anime list item

This commit is contained in:
2017-07-21 11:43:54 +02:00
parent 22fe164f34
commit 0d9b6330ee
3 changed files with 23 additions and 5 deletions

View File

@ -1,5 +1,8 @@
component Avatar(user *arn.User)
a.user.ajax(href="/+" + user.Nick, title=user.Nick)
CustomAvatar(user, user.Link(), user.Nick)
component CustomAvatar(user *arn.User, link string, title string)
a.user.ajax(href=link, title=title)
AvatarNoLink(user)
component AvatarNoLink(user *arn.User)