5 lines
334 B
Plaintext
5 lines
334 B
Plaintext
component Rating(value float64, userCount int, user *arn.User)
|
|
if user == nil
|
|
.anime-rating(title="Rated by " + arn.Plural(userCount, "user"))= fmt.Sprintf("%.1f", value)
|
|
else
|
|
.anime-rating(title="Rated by " + arn.Plural(userCount, "user"))= fmt.Sprintf("%." + strconv.Itoa(user.Settings().Format.RatingsPrecision) + "f", value) |