diff options
Diffstat (limited to 'views/profile.pug')
-rw-r--r-- | views/profile.pug | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/views/profile.pug b/views/profile.pug index 39f1977..de6e5c4 100644 --- a/views/profile.pug +++ b/views/profile.pug @@ -7,9 +7,19 @@ html body include header article - h1= SITE_NAME + h1 Profile p Welcome, <a class="black" href="/user/#{user.name}">#{user.name}</a>! + + if who.about + p.box= who.about + + p Member since #{human_date(who.ctime)}. + + +userstats(who, ratings) + + h3 Account + p Your mail address is #{user.mail} if ENABLE_MAIL @@ -30,7 +40,7 @@ html | <a href="/account/change-name">Change user name</a> br | <a href="/account/change-about">Change profile text</a> - br + p | <a href="/account/delete">Delete account</a> if ENABLE_WEBHOOKS |