Added osu account info

This commit is contained in:
Eduard Urbach 2017-07-02 16:24:26 +02:00
parent 367d31aadb
commit 464a6ec26b
3 changed files with 6 additions and 6 deletions

View File

@ -23,9 +23,9 @@ component ProfileHeader(viewUser *arn.User, user *arn.User)
a(href=viewUser.WebsiteURL(), target="_blank", rel="nofollow")= viewUser.Website a(href=viewUser.WebsiteURL(), target="_blank", rel="nofollow")= viewUser.Website
if viewUser.Accounts.Osu.Nick != "" && viewUser.Accounts.Osu.PP >= 1000 if viewUser.Accounts.Osu.Nick != "" && viewUser.Accounts.Osu.PP >= 1000
p.profile-field.osu(title="osu! performance points") p.profile-field.osu(title="osu! Level " + toString(int(viewUser.Accounts.Osu.Level)) + " | Accuracy: " + fmt.Sprintf("%.1f", viewUser.Accounts.Osu.Accuracy) + "%")
Icon("trophy") Icon("trophy")
span= toString(int(viewUser.Accounts.Osu.PP)) + " pp" a(href="https://osu.ppy.sh/u/" + viewUser.Accounts.Osu.Nick, target="_blank", rel="noopener")= toString(int(viewUser.Accounts.Osu.PP)) + " pp"
//- if viewUser.dataEditCount //- if viewUser.dataEditCount
//- p.profile-field.editor-contribution(title="Anime data modifications") //- p.profile-field.editor-contribution(title="Anime data modifications")

View File

@ -20,6 +20,9 @@ profile-boot-duration = 2s
.profile-field .profile-field
text-align center text-align center
a
color white
< 600px < 600px
.profile .profile
vertical vertical
@ -80,10 +83,6 @@ profile-boot-duration = 2s
padding-left calc(content-padding * 2) padding-left calc(content-padding * 2)
max-width 900px max-width 900px
.website
a
color white
#nick #nick
margin-bottom 1rem margin-bottom 1rem

View File

@ -19,6 +19,7 @@ component Settings(user *arn.User)
InputText("Accounts.MyAnimeList.Nick", user.Accounts.MyAnimeList.Nick, "MyAnimeList", "Your username on myanimelist.net") InputText("Accounts.MyAnimeList.Nick", user.Accounts.MyAnimeList.Nick, "MyAnimeList", "Your username on myanimelist.net")
InputText("Accounts.Kitsu.Nick", user.Accounts.Kitsu.Nick, "Kitsu", "Your username on kitsu.io") InputText("Accounts.Kitsu.Nick", user.Accounts.Kitsu.Nick, "Kitsu", "Your username on kitsu.io")
InputText("Accounts.AnimePlanet.Nick", user.Accounts.AnimePlanet.Nick, "AnimePlanet", "Your username on anime-planet.com") InputText("Accounts.AnimePlanet.Nick", user.Accounts.AnimePlanet.Nick, "AnimePlanet", "Your username on anime-planet.com")
InputText("Accounts.Osu.Nick", user.Accounts.Osu.Nick, "Osu", "Your username on osu.ppy.sh")
//- .widget.mountable(data-api="/api/settings/" + user.ID) //- .widget.mountable(data-api="/api/settings/" + user.ID)
//- h3.widget-title //- h3.widget-title