Improved users page

This commit is contained in:
Eduard Urbach 2017-06-10 02:51:11 +02:00
parent 41f8c1a978
commit 1454cdc239
4 changed files with 12 additions and 4 deletions

View File

@ -67,7 +67,7 @@ animation cover-animation
.image-container
flex 1
max-width 250px
max-width 275px
.intro-container
vertical

View File

@ -2,6 +2,7 @@ package users
import (
"net/http"
"sort"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
@ -11,7 +12,11 @@ import (
// Get ...
func Get(ctx *aero.Context) string {
users, err := arn.FilterUsers(func(user *arn.User) bool {
return user.IsActive()
return user.IsActive() && user.Avatar != ""
})
sort.Slice(users, func(i, j int) bool {
return users[i].Registered < users[j].Registered
})
if err != nil {

View File

@ -1,5 +1,6 @@
component Users(users []*arn.User)
h2.page-title Users
each user in users
p= user.Nick
.user-avatars
each user in users
Avatar(user)

View File

@ -0,0 +1,2 @@
.user-avatars
horizontal-wrap