Posts and threads as sub-pages of forum on user profiles

This commit is contained in:
2017-11-17 11:00:49 +01:00
parent 3dc9a2e7bf
commit 900148b788
5 changed files with 18 additions and 8 deletions

View File

@ -1,5 +1,11 @@
component ProfileForumTabs(viewUser *arn.User)
.tabs
Tab("Threads", "list", "/+" + viewUser.Nick + "/forum/threads")
Tab("Posts", "comments", "/+" + viewUser.Nick + "/forum/posts")
component LatestPosts(postables []arn.Postable, viewUser *arn.User, user *arn.User, uri string)
ProfileHeader(viewUser, user, uri)
ProfileForumTabs(viewUser)
if len(postables) > 0
h1.page-title= len(postables), " latest posts by ", postables[0].Author().Nick

View File

@ -21,8 +21,7 @@ component ProfileTabs(viewUser *arn.User, uri string)
.tabs
Tab("Anime", "th", "/+" + viewUser.Nick)
Tab("Collection", "list", "/+" + viewUser.Nick + "/animelist/watching")
Tab("Threads", "comment", "/+" + viewUser.Nick + "/threads")
Tab("Posts", "comments", "/+" + viewUser.Nick + "/posts")
Tab("Forum", "comment", "/+" + viewUser.Nick + "/forum/threads")
Tab("Tracks", "music", "/+" + viewUser.Nick + "/soundtracks")
Tab("Stats", "area-chart", "/+" + viewUser.Nick + "/stats")
Tab("Followers", "users", "/+" + viewUser.Nick + "/followers")

View File

@ -1,5 +1,6 @@
component ProfileThreads(threads []*arn.Thread, viewUser *arn.User, user *arn.User, uri string)
ProfileHeader(viewUser, user, uri)
ProfileForumTabs(viewUser)
if len(threads) == 0
p.no-data.mountable= viewUser.Nick + " hasn't written any threads yet."