Implemented new user registrations

This commit is contained in:
2017-06-22 22:26:52 +02:00
parent cf0d47bfb0
commit efe8a36b7a
6 changed files with 105 additions and 31 deletions

View File

@ -11,5 +11,8 @@ component Forum(tag string, threads []*arn.Thread, threadsPerPage int)
span Load more
component ThreadList(threads []*arn.Thread)
each thread in threads
ThreadLink(thread)
if len(threads) == 0
p No threads found.
else
each thread in threads
ThreadLink(thread)