From 750406d13509096212c3f24244939cb947c77d11 Mon Sep 17 00:00:00 2001 From: clarkerubber Date: Mon, 2 Feb 2015 02:16:44 +1100 Subject: [PATCH] Link peers in mod zone to games --- app/views/user/mod.scala.html | 8 ++++---- public/stylesheets/user-show.css | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/app/views/user/mod.scala.html b/app/views/user/mod.scala.html index bd10caf44d..e5ddd827cb 100644 --- a/app/views/user/mod.scala.html +++ b/app/views/user/mod.scala.html @@ -107,19 +107,19 @@ @(result.blur)% @if(result.hold){Yes} else {No} -
+ @result.bestMatch.assessmentString
@(result.bestMatch.matchPercentage)% -
+ @Range(0, 4).map { i => @result.secondaryMatches.lift(i) match { case Some(peer) => { -
+ @peer.assessmentString
@(peer.matchPercentage)% -
+ } case _ => { diff --git a/public/stylesheets/user-show.css b/public/stylesheets/user-show.css index 5c76a0bcf4..756e5602bb 100644 --- a/public/stylesheets/user-show.css +++ b/public/stylesheets/user-show.css @@ -264,3 +264,6 @@ div.user_show div.content_box_inter.tabs { div.user_show #crosstable { margin: 25px auto 15px auto; } +div.user_show .evaluation .peerLink { + text-decoration: none; +} \ No newline at end of file